From db36e92e050cb94edb1d5d411eaf104aa608543a Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Tue, 26 May 2020 19:58:47 +0000 Subject: [PATCH 1/6] Update from master --- .../azure/mgmt/netapp/models/__init__.py | 3 + .../azure/mgmt/netapp/models/_models.py | 70 ++++++++++++++++++- .../azure/mgmt/netapp/models/_models_py3.py | 70 ++++++++++++++++++- sdk/netapp/azure-mgmt-netapp/setup.py | 4 +- 4 files changed, 142 insertions(+), 5 deletions(-) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py index 8a7fbdce7ee0..54503d451c19 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py @@ -18,6 +18,7 @@ from ._models_py3 import ExportPolicyRule from ._models_py3 import MetricSpecification from ._models_py3 import MountTarget + from ._models_py3 import MountTargetProperties from ._models_py3 import NetAppAccount from ._models_py3 import NetAppAccountPatch from ._models_py3 import Operation @@ -43,6 +44,7 @@ from ._models import ExportPolicyRule from ._models import MetricSpecification from ._models import MountTarget + from ._models import MountTargetProperties from ._models import NetAppAccount from ._models import NetAppAccountPatch from ._models import Operation @@ -83,6 +85,7 @@ 'ExportPolicyRule', 'MetricSpecification', 'MountTarget', + 'MountTargetProperties', 'NetAppAccount', 'NetAppAccountPatch', 'Operation', diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py index ca5db54b9953..0e8e074de4f7 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py @@ -413,6 +413,72 @@ def __init__(self, **kwargs): self.smb_server_fqdn = kwargs.get('smb_server_fqdn', None) +class MountTargetProperties(Model): + """Mount target properties. + + Variables are only populated by the server, and will be ignored when + sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar mount_target_id: mountTargetId. UUID v4 used to identify the + MountTarget + :vartype mount_target_id: str + :param file_system_id: Required. fileSystemId. UUID v4 used to identify + the MountTarget + :type file_system_id: str + :ivar ip_address: ipAddress. The mount target's IPv4 address + :vartype ip_address: str + :param subnet: subnet. The subnet + :type subnet: str + :param start_ip: startIp. The start of IPv4 address range to use when + creating a new mount target + :type start_ip: str + :param end_ip: endIp. The end of IPv4 address range to use when creating a + new mount target + :type end_ip: str + :param gateway: gateway. The gateway of the IPv4 address range to use when + creating a new mount target + :type gateway: str + :param netmask: netmask. The netmask of the IPv4 address range to use when + creating a new mount target + :type netmask: str + :param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified + Domain Name, FQDN + :type smb_server_fqdn: str + """ + + _validation = { + 'mount_target_id': {'readonly': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'}, + 'file_system_id': {'required': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'}, + 'ip_address': {'readonly': True}, + } + + _attribute_map = { + 'mount_target_id': {'key': 'mountTargetId', 'type': 'str'}, + 'file_system_id': {'key': 'fileSystemId', 'type': 'str'}, + 'ip_address': {'key': 'ipAddress', 'type': 'str'}, + 'subnet': {'key': 'subnet', 'type': 'str'}, + 'start_ip': {'key': 'startIp', 'type': 'str'}, + 'end_ip': {'key': 'endIp', 'type': 'str'}, + 'gateway': {'key': 'gateway', 'type': 'str'}, + 'netmask': {'key': 'netmask', 'type': 'str'}, + 'smb_server_fqdn': {'key': 'smbServerFqdn', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(MountTargetProperties, self).__init__(**kwargs) + self.mount_target_id = None + self.file_system_id = kwargs.get('file_system_id', None) + self.ip_address = None + self.subnet = kwargs.get('subnet', None) + self.start_ip = kwargs.get('start_ip', None) + self.end_ip = kwargs.get('end_ip', None) + self.gateway = kwargs.get('gateway', None) + self.netmask = kwargs.get('netmask', None) + self.smb_server_fqdn = kwargs.get('smb_server_fqdn', None) + + class NetAppAccount(Model): """NetApp account resource. @@ -851,7 +917,7 @@ class Volume(Model): Must have the delegation Microsoft.NetApp/volumes :type subnet_id: str :param mount_targets: mountTargets. List of mount targets - :type mount_targets: list[~azure.mgmt.netapp.models.MountTarget] + :type mount_targets: list[~azure.mgmt.netapp.models.MountTargetProperties] :param volume_type: What type of volume is this :type volume_type: str :param data_protection: DataProtection. DataProtection type volumes @@ -892,7 +958,7 @@ class Volume(Model): 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, - 'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTarget]'}, + 'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTargetProperties]'}, 'volume_type': {'key': 'properties.volumeType', 'type': 'str'}, 'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePropertiesDataProtection'}, 'is_restoring': {'key': 'properties.isRestoring', 'type': 'bool'}, diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py index 1ff877b233b6..552088d3e8f4 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py @@ -413,6 +413,72 @@ def __init__(self, *, location: str, file_system_id: str, tags=None, subnet: str self.smb_server_fqdn = smb_server_fqdn +class MountTargetProperties(Model): + """Mount target properties. + + Variables are only populated by the server, and will be ignored when + sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar mount_target_id: mountTargetId. UUID v4 used to identify the + MountTarget + :vartype mount_target_id: str + :param file_system_id: Required. fileSystemId. UUID v4 used to identify + the MountTarget + :type file_system_id: str + :ivar ip_address: ipAddress. The mount target's IPv4 address + :vartype ip_address: str + :param subnet: subnet. The subnet + :type subnet: str + :param start_ip: startIp. The start of IPv4 address range to use when + creating a new mount target + :type start_ip: str + :param end_ip: endIp. The end of IPv4 address range to use when creating a + new mount target + :type end_ip: str + :param gateway: gateway. The gateway of the IPv4 address range to use when + creating a new mount target + :type gateway: str + :param netmask: netmask. The netmask of the IPv4 address range to use when + creating a new mount target + :type netmask: str + :param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified + Domain Name, FQDN + :type smb_server_fqdn: str + """ + + _validation = { + 'mount_target_id': {'readonly': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'}, + 'file_system_id': {'required': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'}, + 'ip_address': {'readonly': True}, + } + + _attribute_map = { + 'mount_target_id': {'key': 'mountTargetId', 'type': 'str'}, + 'file_system_id': {'key': 'fileSystemId', 'type': 'str'}, + 'ip_address': {'key': 'ipAddress', 'type': 'str'}, + 'subnet': {'key': 'subnet', 'type': 'str'}, + 'start_ip': {'key': 'startIp', 'type': 'str'}, + 'end_ip': {'key': 'endIp', 'type': 'str'}, + 'gateway': {'key': 'gateway', 'type': 'str'}, + 'netmask': {'key': 'netmask', 'type': 'str'}, + 'smb_server_fqdn': {'key': 'smbServerFqdn', 'type': 'str'}, + } + + def __init__(self, *, file_system_id: str, subnet: str=None, start_ip: str=None, end_ip: str=None, gateway: str=None, netmask: str=None, smb_server_fqdn: str=None, **kwargs) -> None: + super(MountTargetProperties, self).__init__(**kwargs) + self.mount_target_id = None + self.file_system_id = file_system_id + self.ip_address = None + self.subnet = subnet + self.start_ip = start_ip + self.end_ip = end_ip + self.gateway = gateway + self.netmask = netmask + self.smb_server_fqdn = smb_server_fqdn + + class NetAppAccount(Model): """NetApp account resource. @@ -851,7 +917,7 @@ class Volume(Model): Must have the delegation Microsoft.NetApp/volumes :type subnet_id: str :param mount_targets: mountTargets. List of mount targets - :type mount_targets: list[~azure.mgmt.netapp.models.MountTarget] + :type mount_targets: list[~azure.mgmt.netapp.models.MountTargetProperties] :param volume_type: What type of volume is this :type volume_type: str :param data_protection: DataProtection. DataProtection type volumes @@ -892,7 +958,7 @@ class Volume(Model): 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, - 'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTarget]'}, + 'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTargetProperties]'}, 'volume_type': {'key': 'properties.volumeType', 'type': 'str'}, 'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePropertiesDataProtection'}, 'is_restoring': {'key': 'properties.isRestoring', 'type': 'bool'}, diff --git a/sdk/netapp/azure-mgmt-netapp/setup.py b/sdk/netapp/azure-mgmt-netapp/setup.py index 57f7a5faacd7..fe278800efe4 100644 --- a/sdk/netapp/azure-mgmt-netapp/setup.py +++ b/sdk/netapp/azure-mgmt-netapp/setup.py @@ -36,7 +36,9 @@ pass # Version extraction inspired from 'requests' -with open(os.path.join(package_folder_path, 'version.py'), 'r') as fd: +with open(os.path.join(package_folder_path, 'version.py') + if os.path.exists(os.path.join(package_folder_path, 'version.py')) + else os.path.join(package_folder_path, '_version.py'), 'r') as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) From cc81774038801bc09759744281ebff074ae5503e Mon Sep 17 00:00:00 2001 From: Changlong Liu Date: Thu, 28 May 2020 06:31:16 +0800 Subject: [PATCH 2/6] run test --- ...st_account.test_create_delete_account.yaml | 90 +- ...test_account.test_get_account_by_name.yaml | 86 +- .../test_account.test_list_accounts.yaml | 154 +-- .../test_account.test_patch_account.yaml | 82 +- .../test_pool.test_create_delete_pool.yaml | 162 ++-- .../test_pool.test_get_pool_by_name.yaml | 162 ++-- .../recordings/test_pool.test_list_pools.yaml | 284 +++--- .../recordings/test_pool.test_patch_pool.yaml | 220 +++-- .../test_pool.test_update_pool.yaml | 192 ++-- ...volume.test_create_delete_list_volume.yaml | 451 +++++---- .../test_volume.test_get_volume_by_name.yaml | 511 ++++++---- .../test_volume.test_list_volumes.yaml | 902 ++++++++++++++---- .../test_volume.test_patch_volume.yaml | 448 +++++---- .../test_volume.test_update_volume.yaml | 463 +++++---- 14 files changed, 2579 insertions(+), 1628 deletions(-) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml index 97e4c551a783..58e38abe704a 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A29%3A41.4398191Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6056949Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba317b7-eb65-48b1-ba4e-bd1519b0d686?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:29:43 GMT + - Wed, 27 May 2020 05:11:03 GMT etag: - - W/"datetime'2020-01-13T12%3A29%3A41.4398191Z'" + - W/"datetime'2020-05-27T05%3A11%3A01.6056949Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba317b7-eb65-48b1-ba4e-bd1519b0d686?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba317b7-eb65-48b1-ba4e-bd1519b0d686","name":"cba317b7-eb65-48b1-ba4e-bd1519b0d686","status":"Succeeded","startTime":"2020-01-13T12:29:40.6465958Z","endTime":"2020-01-13T12:29:42.4123333Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a","name":"8688be66-fdd0-456b-86ff-d7d852bded9a","status":"Succeeded","startTime":"2020-05-27T05:11:01.5379371Z","endTime":"2020-05-27T05:11:01.6785786Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:14 GMT + - Wed, 27 May 2020 05:11:34 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A29%3A42.2946332Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6817687Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:14 GMT + - Wed, 27 May 2020 05:11:34 GMT etag: - - W/"datetime'2020-01-13T12%3A29%3A42.2946332Z'" + - W/"datetime'2020-05-27T05%3A11%3A01.6817687Z'" expires: - '-1' pragma: @@ -166,26 +166,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A29%3A42.2946332Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6817687Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '393' + - '387' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:15 GMT + - Wed, 27 May 2020 05:11:34 GMT expires: - '-1' pragma: @@ -219,8 +219,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -232,17 +232,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8c0405-c91b-40ac-83c9-7bd34a8200cb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 12:30:18 GMT + - Wed, 27 May 2020 05:11:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8c0405-c91b-40ac-83c9-7bd34a8200cb?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -270,24 +270,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8c0405-c91b-40ac-83c9-7bd34a8200cb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8c0405-c91b-40ac-83c9-7bd34a8200cb","name":"ad8c0405-c91b-40ac-83c9-7bd34a8200cb","status":"Succeeded","startTime":"2020-01-13T12:30:17.7085219Z","endTime":"2020-01-13T12:30:18.8779309Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c","name":"4d2211a9-9042-4ed6-a32b-eb8e4137bf9c","status":"Succeeded","startTime":"2020-05-27T05:11:36.5143518Z","endTime":"2020-05-27T05:11:36.640476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:49 GMT + - Wed, 27 May 2020 05:12:07 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -337,7 +337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:49 GMT + - Wed, 27 May 2020 05:12:07 GMT expires: - '-1' pragma: @@ -361,8 +361,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -378,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:30:49 GMT + - Wed, 27 May 2020 05:12:07 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml index f0c1a24c65d6..cfe7fb7ee07a 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A30%3A59.5882553Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6280375Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99f4d46e-dafb-4aee-9f9d-031299c0721f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:31:00 GMT + - Wed, 27 May 2020 05:12:17 GMT etag: - - W/"datetime'2020-01-13T12%3A30%3A59.5882553Z'" + - W/"datetime'2020-05-27T05%3A12%3A16.6280375Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99f4d46e-dafb-4aee-9f9d-031299c0721f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99f4d46e-dafb-4aee-9f9d-031299c0721f","name":"99f4d46e-dafb-4aee-9f9d-031299c0721f","status":"Succeeded","startTime":"2020-01-13T12:30:59.1298954Z","endTime":"2020-01-13T12:31:00.4424166Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835","name":"8485b0a6-fd47-4b6f-a230-6851f32dd835","status":"Succeeded","startTime":"2020-05-27T05:12:16.5784717Z","endTime":"2020-05-27T05:12:16.6878431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:31:31 GMT + - Wed, 27 May 2020 05:12:49 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A31%3A00.3129455Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6900974Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:31:32 GMT + - Wed, 27 May 2020 05:12:49 GMT etag: - - W/"datetime'2020-01-13T12%3A31%3A00.3129455Z'" + - W/"datetime'2020-05-27T05%3A12%3A16.6900974Z'" expires: - '-1' pragma: @@ -166,28 +166,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A31%3A00.3129455Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6900974Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:31:32 GMT + - Wed, 27 May 2020 05:12:50 GMT etag: - - W/"datetime'2020-01-13T12%3A31%3A00.3129455Z'" + - W/"datetime'2020-05-27T05%3A12%3A16.6900974Z'" expires: - '-1' pragma: @@ -221,8 +221,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -234,17 +234,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b23949ab-febe-4290-a534-a3d881164bcf?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 12:31:34 GMT + - Wed, 27 May 2020 05:12:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b23949ab-febe-4290-a534-a3d881164bcf?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -272,24 +272,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b23949ab-febe-4290-a534-a3d881164bcf?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b23949ab-febe-4290-a534-a3d881164bcf","name":"b23949ab-febe-4290-a534-a3d881164bcf","status":"Succeeded","startTime":"2020-01-13T12:31:34.6802021Z","endTime":"2020-01-13T12:31:35.7583522Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78","name":"5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78","status":"Succeeded","startTime":"2020-05-27T05:12:51.2467521Z","endTime":"2020-05-27T05:12:51.3404976Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:06 GMT + - Wed, 27 May 2020 05:13:23 GMT expires: - '-1' pragma: @@ -321,8 +321,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -339,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:06 GMT + - Wed, 27 May 2020 05:13:23 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml index 92c5c1775d40..fe5015f81eed 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A15.5434975Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.473162Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a990f2-ac71-47d0-8372-39caea719380?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '373' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:16 GMT + - Wed, 27 May 2020 05:13:33 GMT etag: - - W/"datetime'2020-01-13T12%3A32%3A15.5434975Z'" + - W/"datetime'2020-05-27T05%3A13%3A32.473162Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a990f2-ac71-47d0-8372-39caea719380?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a990f2-ac71-47d0-8372-39caea719380","name":"93a990f2-ac71-47d0-8372-39caea719380","status":"Succeeded","startTime":"2020-01-13T12:32:15.0549402Z","endTime":"2020-01-13T12:32:16.4455554Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae","name":"814570a6-98bd-47e2-af9b-63918b7067ae","status":"Succeeded","startTime":"2020-05-27T05:13:32.3246419Z","endTime":"2020-05-27T05:13:32.4808889Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:46 GMT + - Wed, 27 May 2020 05:14:05 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A16.3462625Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.5562403Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:47 GMT + - Wed, 27 May 2020 05:14:05 GMT etag: - - W/"datetime'2020-01-13T12%3A32%3A16.3462625Z'" + - W/"datetime'2020-05-27T05%3A13%3A32.5562403Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -166,34 +166,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A52.0442594Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.6565692Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c64757ca-c8bb-476b-b77f-dcc4bc84d4a5?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:32:53 GMT + - Wed, 27 May 2020 05:14:09 GMT etag: - - W/"datetime'2020-01-13T12%3A32%3A52.0442594Z'" + - W/"datetime'2020-05-27T05%3A14%3A08.6565692Z'" expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -223,24 +223,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c64757ca-c8bb-476b-b77f-dcc4bc84d4a5?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c64757ca-c8bb-476b-b77f-dcc4bc84d4a5","name":"c64757ca-c8bb-476b-b77f-dcc4bc84d4a5","status":"Succeeded","startTime":"2020-01-13T12:32:51.3556358Z","endTime":"2020-01-13T12:32:52.9529753Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8","name":"23591e65-99e2-4f27-9d7c-353be9dc4aa8","status":"Succeeded","startTime":"2020-05-27T05:14:08.5304514Z","endTime":"2020-05-27T05:14:08.6867107Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:33:24 GMT + - Wed, 27 May 2020 05:14:41 GMT expires: - '-1' pragma: @@ -272,26 +272,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A52.8450211Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.7656741Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:33:25 GMT + - Wed, 27 May 2020 05:14:42 GMT etag: - - W/"datetime'2020-01-13T12%3A32%3A52.8450211Z'" + - W/"datetime'2020-05-27T05%3A14%3A08.7656741Z'" expires: - '-1' pragma: @@ -323,26 +323,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A16.3462625Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A32%3A52.8450211Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.5562403Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.7656741Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '775' + - '763' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:33:25 GMT + - Wed, 27 May 2020 05:14:41 GMT expires: - '-1' pragma: @@ -376,8 +376,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -389,17 +389,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cffb707-0b7e-4865-9c52-16cef9f67ca2?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 12:33:40 GMT + - Wed, 27 May 2020 05:14:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cffb707-0b7e-4865-9c52-16cef9f67ca2?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -427,24 +427,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cffb707-0b7e-4865-9c52-16cef9f67ca2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cffb707-0b7e-4865-9c52-16cef9f67ca2","name":"7cffb707-0b7e-4865-9c52-16cef9f67ca2","status":"Succeeded","startTime":"2020-01-13T12:33:40.2922852Z","endTime":"2020-01-13T12:33:41.2141648Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b","name":"ef703138-8a19-4bf1-bac5-f38376cf140b","status":"Succeeded","startTime":"2020-05-27T05:14:43.3342179Z","endTime":"2020-05-27T05:14:43.4748286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:34:11 GMT + - Wed, 27 May 2020 05:15:15 GMT expires: - '-1' pragma: @@ -476,8 +476,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:34:12 GMT + - Wed, 27 May 2020 05:15:15 GMT expires: - '-1' pragma: @@ -520,8 +520,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -533,17 +533,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0de70c21-cc4a-4c60-a9db-6ecddc792f10?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 12:34:14 GMT + - Wed, 27 May 2020 05:15:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0de70c21-cc4a-4c60-a9db-6ecddc792f10?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -571,24 +571,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0de70c21-cc4a-4c60-a9db-6ecddc792f10?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0de70c21-cc4a-4c60-a9db-6ecddc792f10","name":"0de70c21-cc4a-4c60-a9db-6ecddc792f10","status":"Succeeded","startTime":"2020-01-13T12:34:14.473208Z","endTime":"2020-01-13T12:34:15.4263372Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c","name":"d4f146bf-cb26-4189-943b-10ff1a6a187c","status":"Succeeded","startTime":"2020-05-27T05:15:16.6015132Z","endTime":"2020-05-27T05:15:16.8046609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '515' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:34:45 GMT + - Wed, 27 May 2020 05:15:48 GMT expires: - '-1' pragma: @@ -620,8 +620,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:34:46 GMT + - Wed, 27 May 2020 05:15:48 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml index ba989130fb89..2a4700462b01 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A34%3A55.6700044Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A15%3A56.9065088Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db93e5f5-0474-4456-bfcd-a6f476a9c3c5?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795?api-version=2019-11-01 cache-control: - no-cache content-length: - - '381' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:34:56 GMT + - Wed, 27 May 2020 05:15:58 GMT etag: - - W/"datetime'2020-01-13T12%3A34%3A55.6700044Z'" + - W/"datetime'2020-05-27T05%3A15%3A56.9065088Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db93e5f5-0474-4456-bfcd-a6f476a9c3c5?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db93e5f5-0474-4456-bfcd-a6f476a9c3c5","name":"db93e5f5-0474-4456-bfcd-a6f476a9c3c5","status":"Succeeded","startTime":"2020-01-13T12:34:55.1879567Z","endTime":"2020-01-13T12:34:56.5004266Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795","name":"79c4e294-bfd9-4369-aa0f-451c12931795","status":"Succeeded","startTime":"2020-05-27T05:15:56.8462373Z","endTime":"2020-05-27T05:15:56.986868Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:35:27 GMT + - Wed, 27 May 2020 05:16:28 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A34%3A56.3856857Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A15%3A56.9795785Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:35:28 GMT + - Wed, 27 May 2020 05:16:29 GMT etag: - - W/"datetime'2020-01-13T12%3A34%3A56.3856857Z'" + - W/"datetime'2020-05-27T05%3A15%3A56.9795785Z'" expires: - '-1' pragma: @@ -170,28 +170,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T12%3A35%3A30.9856368Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A16%3A31.0990238Z''\"","location":"eastus","tags":{"Tag1":"Value2"},"properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '406' + - '400' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:35:32 GMT + - Wed, 27 May 2020 05:16:32 GMT etag: - - W/"datetime'2020-01-13T12%3A35%3A30.9856368Z'" + - W/"datetime'2020-05-27T05%3A16%3A31.0990238Z'" expires: - '-1' pragma: @@ -227,8 +227,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -240,17 +240,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/920aa899-165e-4f24-aa13-7f12fa9c154f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 12:35:34 GMT + - Wed, 27 May 2020 05:16:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/920aa899-165e-4f24-aa13-7f12fa9c154f?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -278,24 +278,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/920aa899-165e-4f24-aa13-7f12fa9c154f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/920aa899-165e-4f24-aa13-7f12fa9c154f","name":"920aa899-165e-4f24-aa13-7f12fa9c154f","status":"Succeeded","startTime":"2020-01-13T12:35:34.4542132Z","endTime":"2020-01-13T12:35:35.3604423Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f","name":"93d70bbb-a59f-4d14-a320-316b906bf23f","status":"Succeeded","startTime":"2020-05-27T05:16:33.5769022Z","endTime":"2020-05-27T05:16:33.7331659Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:36:05 GMT + - Wed, 27 May 2020 05:17:05 GMT expires: - '-1' pragma: @@ -327,8 +327,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 12:36:06 GMT + - Wed, 27 May 2020 05:17:05 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml index 8b3cb96b80c1..cd9198a11144 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A07%3A37.1341354Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A17%3A39.4933116Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35b0d776-c9e1-40a1-bead-a96de4c606a2?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:07:37 GMT + - Wed, 27 May 2020 05:17:40 GMT etag: - - W/"datetime'2020-01-13T13%3A07%3A37.1341354Z'" + - W/"datetime'2020-05-27T05%3A17%3A39.4933116Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35b0d776-c9e1-40a1-bead-a96de4c606a2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35b0d776-c9e1-40a1-bead-a96de4c606a2","name":"35b0d776-c9e1-40a1-bead-a96de4c606a2","status":"Succeeded","startTime":"2020-01-13T13:07:36.5821357Z","endTime":"2020-01-13T13:07:37.9727293Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0","name":"fd418a4c-edcd-4d1b-a044-a3909f4583c0","status":"Succeeded","startTime":"2020-05-27T05:17:39.1421607Z","endTime":"2020-05-27T05:17:39.5640492Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:08 GMT + - Wed, 27 May 2020 05:18:12 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A07%3A37.8518187Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A17%3A39.5703865Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:08 GMT + - Wed, 27 May 2020 05:18:13 GMT etag: - - W/"datetime'2020-01-13T13%3A07%3A37.8518187Z'" + - W/"datetime'2020-05-27T05%3A17%3A39.5703865Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A08%3A13.048349Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.1633617Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/01458d0e-eea0-4799-808c-8deadeb3e414?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33?api-version=2019-11-01 cache-control: - no-cache content-length: - - '465' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:13 GMT + - Wed, 27 May 2020 05:18:16 GMT etag: - - W/"datetime'2020-01-13T13%3A08%3A13.048349Z'" + - W/"datetime'2020-05-27T05%3A18%3A16.1633617Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/01458d0e-eea0-4799-808c-8deadeb3e414?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/01458d0e-eea0-4799-808c-8deadeb3e414","name":"01458d0e-eea0-4799-808c-8deadeb3e414","status":"Succeeded","startTime":"2020-01-13T13:08:12.5170371Z","endTime":"2020-01-13T13:08:14.2358031Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33","name":"0f537d54-b063-4836-a515-5b47f2faea33","status":"Succeeded","startTime":"2020-05-27T05:18:16.092127Z","endTime":"2020-05-27T05:18:16.3890189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '543' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:44 GMT + - Wed, 27 May 2020 05:18:49 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A08%3A14.0683211Z''\"","location":"westus2stage","properties":{"poolId":"2f1537d7-7e45-22c7-9092-77d816bafb6f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.3805694Z''\"","location":"eastus","properties":{"poolId":"8fc6645a-ad46-4a23-3016-700f443db42d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:45 GMT + - Wed, 27 May 2020 05:18:50 GMT etag: - - W/"datetime'2020-01-13T13%3A08%3A14.0683211Z'" + - W/"datetime'2020-05-27T05%3A18%3A16.3805694Z'" expires: - '-1' pragma: @@ -326,26 +326,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A08%3A14.0683211Z''\"","location":"westus2stage","properties":{"poolId":"2f1537d7-7e45-22c7-9092-77d816bafb6f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.3805694Z''\"","location":"eastus","properties":{"poolId":"8fc6645a-ad46-4a23-3016-700f443db42d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:08:46 GMT + - Wed, 27 May 2020 05:18:50 GMT expires: - '-1' pragma: @@ -379,8 +379,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -392,17 +392,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8710beb4-0dca-414c-9894-30bbcda8173b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:08:49 GMT + - Wed, 27 May 2020 05:18:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8710beb4-0dca-414c-9894-30bbcda8173b?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -430,24 +430,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8710beb4-0dca-414c-9894-30bbcda8173b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8710beb4-0dca-414c-9894-30bbcda8173b","name":"8710beb4-0dca-414c-9894-30bbcda8173b","status":"Succeeded","startTime":"2020-01-13T13:08:48.7668821Z","endTime":"2020-01-13T13:08:49.626288Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0","name":"0a3c7364-e05f-4b89-9727-5fd39d808ba0","status":"Succeeded","startTime":"2020-05-27T05:18:51.6174126Z","endTime":"2020-05-27T05:18:52.0080548Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:09:20 GMT + - Wed, 27 May 2020 05:19:23 GMT expires: - '-1' pragma: @@ -479,8 +479,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:09:21 GMT + - Wed, 27 May 2020 05:19:23 GMT expires: - '-1' pragma: @@ -530,8 +530,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -548,7 +548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:09:31 GMT + - Wed, 27 May 2020 05:19:34 GMT expires: - '-1' pragma: @@ -574,8 +574,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -587,17 +587,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ad77a-3561-4612-b7fc-cb59e73b8aa7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:09:33 GMT + - Wed, 27 May 2020 05:19:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ad77a-3561-4612-b7fc-cb59e73b8aa7?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -625,24 +625,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ad77a-3561-4612-b7fc-cb59e73b8aa7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ad77a-3561-4612-b7fc-cb59e73b8aa7","name":"220ad77a-3561-4612-b7fc-cb59e73b8aa7","status":"Succeeded","startTime":"2020-01-13T13:09:33.1227747Z","endTime":"2020-01-13T13:09:34.09148Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1","name":"fbf09bed-8b6c-4b5f-9e29-c082ee9242f1","status":"Succeeded","startTime":"2020-05-27T05:19:35.571438Z","endTime":"2020-05-27T05:19:35.7120665Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '514' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:04 GMT + - Wed, 27 May 2020 05:20:06 GMT expires: - '-1' pragma: @@ -674,8 +674,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:06 GMT + - Wed, 27 May 2020 05:20:08 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml index 9d820d703682..d8ad00e7ec9d 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A10%3A15.5109994Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A20%3A16.4733588Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8413fe0a-8c4b-4844-a758-4ac0bdf9a118?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:16 GMT + - Wed, 27 May 2020 05:20:18 GMT etag: - - W/"datetime'2020-01-13T13%3A10%3A15.5109994Z'" + - W/"datetime'2020-05-27T05%3A20%3A16.4733588Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8413fe0a-8c4b-4844-a758-4ac0bdf9a118?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8413fe0a-8c4b-4844-a758-4ac0bdf9a118","name":"8413fe0a-8c4b-4844-a758-4ac0bdf9a118","status":"Succeeded","startTime":"2020-01-13T13:10:14.9714596Z","endTime":"2020-01-13T13:10:16.3464617Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1","name":"d8c1092e-3e6f-4a88-964a-3b6054b0b5b1","status":"Succeeded","startTime":"2020-05-27T05:20:16.4153485Z","endTime":"2020-05-27T05:20:16.5403506Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:48 GMT + - Wed, 27 May 2020 05:20:49 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A10%3A16.2276814Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A20%3A16.5404228Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:48 GMT + - Wed, 27 May 2020 05:20:50 GMT etag: - - W/"datetime'2020-01-13T13%3A10%3A16.2276814Z'" + - W/"datetime'2020-05-27T05%3A20%3A16.5404228Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A10%3A51.7955605Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A06.6853505Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8c27300-b4cf-41e0-8ddd-881535ede2f4?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:10:52 GMT + - Wed, 27 May 2020 05:21:07 GMT etag: - - W/"datetime'2020-01-13T13%3A10%3A51.7955605Z'" + - W/"datetime'2020-05-27T05%3A21%3A06.6853505Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8c27300-b4cf-41e0-8ddd-881535ede2f4?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8c27300-b4cf-41e0-8ddd-881535ede2f4","name":"f8c27300-b4cf-41e0-8ddd-881535ede2f4","status":"Succeeded","startTime":"2020-01-13T13:10:51.3292582Z","endTime":"2020-01-13T13:10:52.9854917Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770","name":"be50b2a7-d03c-4c49-9935-f0ecbf50e770","status":"Succeeded","startTime":"2020-05-27T05:21:06.6487195Z","endTime":"2020-05-27T05:21:07.0233936Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:11:23 GMT + - Wed, 27 May 2020 05:21:39 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A10%3A52.8635774Z''\"","location":"westus2stage","properties":{"poolId":"1f727985-7662-2f79-af63-5ef7f66a7c53","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A07.002653Z''\"","location":"eastus","properties":{"poolId":"15c88f16-4e19-0160-3425-9dfe9404c71e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:11:24 GMT + - Wed, 27 May 2020 05:21:39 GMT etag: - - W/"datetime'2020-01-13T13%3A10%3A52.8635774Z'" + - W/"datetime'2020-05-27T05%3A21%3A07.002653Z'" expires: - '-1' pragma: @@ -326,28 +326,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A10%3A52.8635774Z''\"","location":"westus2stage","properties":{"poolId":"1f727985-7662-2f79-af63-5ef7f66a7c53","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A07.002653Z''\"","location":"eastus","properties":{"poolId":"15c88f16-4e19-0160-3425-9dfe9404c71e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:11:25 GMT + - Wed, 27 May 2020 05:21:40 GMT etag: - - W/"datetime'2020-01-13T13%3A10%3A52.8635774Z'" + - W/"datetime'2020-05-27T05%3A21%3A07.002653Z'" expires: - '-1' pragma: @@ -381,8 +381,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -394,17 +394,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6be9b94d-ef66-45a0-9da2-2ac888904126?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:11:47 GMT + - Wed, 27 May 2020 05:21:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6be9b94d-ef66-45a0-9da2-2ac888904126?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -416,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14981' x-powered-by: - ASP.NET status: @@ -432,24 +432,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6be9b94d-ef66-45a0-9da2-2ac888904126?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6be9b94d-ef66-45a0-9da2-2ac888904126","name":"6be9b94d-ef66-45a0-9da2-2ac888904126","status":"Succeeded","startTime":"2020-01-13T13:11:47.2120227Z","endTime":"2020-01-13T13:11:48.1339315Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb","name":"20505aed-85bd-452e-8248-4769506c0adb","status":"Succeeded","startTime":"2020-05-27T05:21:41.8969456Z","endTime":"2020-05-27T05:21:42.5063248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:12:18 GMT + - Wed, 27 May 2020 05:22:12 GMT expires: - '-1' pragma: @@ -481,8 +481,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -499,7 +499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:12:29 GMT + - Wed, 27 May 2020 05:22:22 GMT expires: - '-1' pragma: @@ -525,8 +525,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -538,17 +538,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc47cfa0-e022-4fcb-ac78-e1589bf88750?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:12:31 GMT + - Wed, 27 May 2020 05:22:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc47cfa0-e022-4fcb-ac78-e1589bf88750?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -560,7 +560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14980' x-powered-by: - ASP.NET status: @@ -576,24 +576,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc47cfa0-e022-4fcb-ac78-e1589bf88750?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc47cfa0-e022-4fcb-ac78-e1589bf88750","name":"bc47cfa0-e022-4fcb-ac78-e1589bf88750","status":"Succeeded","startTime":"2020-01-13T13:12:30.8353865Z","endTime":"2020-01-13T13:12:31.7883084Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7","name":"e724a3a0-8047-443d-a122-5c8d182a81b7","status":"Succeeded","startTime":"2020-05-27T05:22:23.9731779Z","endTime":"2020-05-27T05:22:24.1137847Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:13:02 GMT + - Wed, 27 May 2020 05:22:55 GMT expires: - '-1' pragma: @@ -625,8 +625,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -643,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:13:04 GMT + - Wed, 27 May 2020 05:22:58 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml index f844c6598fe2..5b5547c3f64e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,82 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive - a response from ''Microsoft.NetApp'' within the specified time period."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '144' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 13:14:10 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: '{"location": "westus2stage"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '28' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A14%3A15.1372592Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A23%3A04.7021565Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fe26ace-499b-42ee-83e6-6f585a909550?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:14:18 GMT + - Wed, 27 May 2020 05:23:05 GMT etag: - - W/"datetime'2020-01-13T13%3A14%3A15.1372592Z'" + - W/"datetime'2020-05-27T05%3A23%3A04.7021565Z'" expires: - '-1' pragma: @@ -98,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -114,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fe26ace-499b-42ee-83e6-6f585a909550?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fe26ace-499b-42ee-83e6-6f585a909550","name":"1fe26ace-499b-42ee-83e6-6f585a909550","status":"Succeeded","startTime":"2020-01-13T13:14:14.6691579Z","endTime":"2020-01-13T13:14:15.9347854Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb","name":"813932c0-b647-4762-804e-4add8446a8bb","status":"Succeeded","startTime":"2020-05-27T05:23:04.6387837Z","endTime":"2020-05-27T05:23:04.7637825Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:14:49 GMT + - Wed, 27 May 2020 05:23:37 GMT expires: - '-1' pragma: @@ -163,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A14%3A15.8269153Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A23%3A04.7662183Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:14:49 GMT + - Wed, 27 May 2020 05:23:38 GMT etag: - - W/"datetime'2020-01-13T13%3A14%3A15.8269153Z'" + - W/"datetime'2020-05-27T05%3A23%3A04.7662183Z'" expires: - '-1' pragma: @@ -205,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -215,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A14%3A52.7201781Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.2531362Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d6eefc2-411c-43d7-9b31-88903bb3f3a8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:14:53 GMT + - Wed, 27 May 2020 05:23:41 GMT etag: - - W/"datetime'2020-01-13T13%3A14%3A52.7201781Z'" + - W/"datetime'2020-05-27T05%3A23%3A40.2531362Z'" expires: - '-1' pragma: @@ -258,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -274,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d6eefc2-411c-43d7-9b31-88903bb3f3a8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d6eefc2-411c-43d7-9b31-88903bb3f3a8","name":"5d6eefc2-411c-43d7-9b31-88903bb3f3a8","status":"Succeeded","startTime":"2020-01-13T13:14:52.2873865Z","endTime":"2020-01-13T13:14:53.5998991Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095","name":"c8f9d7a0-3dfd-439a-9582-72ba98040095","status":"Succeeded","startTime":"2020-05-27T05:23:40.1629705Z","endTime":"2020-05-27T05:23:40.5848713Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:15:25 GMT + - Wed, 27 May 2020 05:24:12 GMT expires: - '-1' pragma: @@ -323,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A14%3A53.5019276Z''\"","location":"westus2stage","properties":{"poolId":"ed20836e-c73f-2bc2-91cc-0c82ba52ce46","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.5794489Z''\"","location":"eastus","properties":{"poolId":"c1beaabe-679b-3bf6-5a43-e789d46bac0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:15:25 GMT + - Wed, 27 May 2020 05:24:33 GMT etag: - - W/"datetime'2020-01-13T13%3A14%3A53.5019276Z'" + - W/"datetime'2020-05-27T05%3A23%3A40.5794489Z'" expires: - '-1' pragma: @@ -365,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -375,36 +327,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A15%3A29.6343452Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.117402Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c2fe848-5c2c-46c3-a2c8-0d51f7b158fb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:15:29 GMT + - Wed, 27 May 2020 05:24:40 GMT etag: - - W/"datetime'2020-01-13T13%3A15%3A29.6343452Z'" + - W/"datetime'2020-05-27T05%3A24%3A39.117402Z'" expires: - '-1' pragma: @@ -418,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' x-powered-by: - ASP.NET status: @@ -434,24 +386,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c2fe848-5c2c-46c3-a2c8-0d51f7b158fb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c2fe848-5c2c-46c3-a2c8-0d51f7b158fb","name":"2c2fe848-5c2c-46c3-a2c8-0d51f7b158fb","status":"Succeeded","startTime":"2020-01-13T13:15:29.1880222Z","endTime":"2020-01-13T13:15:30.5473763Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d","name":"cd518a58-0760-4f01-82a1-cb3d9be4186d","status":"Succeeded","startTime":"2020-05-27T05:24:39.0640965Z","endTime":"2020-05-27T05:24:39.4390991Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:16:01 GMT + - Wed, 27 May 2020 05:25:12 GMT expires: - '-1' pragma: @@ -483,26 +435,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A15%3A30.4561276Z''\"","location":"westus2stage","properties":{"poolId":"f8b997cb-fcea-9b79-7f5c-bba0f899824d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.4367068Z''\"","location":"eastus","properties":{"poolId":"8c553839-bc1b-736b-4270-0bbde73c4a88","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:16:02 GMT + - Wed, 27 May 2020 05:25:13 GMT etag: - - W/"datetime'2020-01-13T13%3A15%3A30.4561276Z'" + - W/"datetime'2020-05-27T05%3A24%3A39.4367068Z'" expires: - '-1' pragma: @@ -534,26 +486,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A14%3A53.5019276Z''\"","location":"westus2stage","properties":{"poolId":"ed20836e-c73f-2bc2-91cc-0c82ba52ce46","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A15%3A30.4561276Z''\"","location":"westus2stage","properties":{"poolId":"f8b997cb-fcea-9b79-7f5c-bba0f899824d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.5794489Z''\"","location":"eastus","properties":{"poolId":"c1beaabe-679b-3bf6-5a43-e789d46bac0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.4367068Z''\"","location":"eastus","properties":{"poolId":"8c553839-bc1b-736b-4270-0bbde73c4a88","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1139' + - '1127' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:16:03 GMT + - Wed, 27 May 2020 05:25:13 GMT expires: - '-1' pragma: @@ -587,8 +539,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -600,17 +552,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcb672e3-f485-4a8b-a67f-30eb30c2a857?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:16:05 GMT + - Wed, 27 May 2020 05:25:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcb672e3-f485-4a8b-a67f-30eb30c2a857?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -622,7 +574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14979' x-powered-by: - ASP.NET status: @@ -638,24 +590,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcb672e3-f485-4a8b-a67f-30eb30c2a857?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcb672e3-f485-4a8b-a67f-30eb30c2a857","name":"dcb672e3-f485-4a8b-a67f-30eb30c2a857","status":"Succeeded","startTime":"2020-01-13T13:16:05.2055761Z","endTime":"2020-01-13T13:16:05.9712105Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65","name":"18796348-fae4-4fde-8ace-33951a2ecd65","status":"Succeeded","startTime":"2020-05-27T05:25:14.8879311Z","endTime":"2020-05-27T05:25:15.3098059Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:16:37 GMT + - Wed, 27 May 2020 05:25:46 GMT expires: - '-1' pragma: @@ -689,8 +641,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -702,17 +654,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54ec815-5a6d-4e75-8c42-0b56b20782cc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:16:38 GMT + - Wed, 27 May 2020 05:25:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54ec815-5a6d-4e75-8c42-0b56b20782cc?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -724,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14978' x-powered-by: - ASP.NET status: @@ -740,24 +692,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54ec815-5a6d-4e75-8c42-0b56b20782cc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54ec815-5a6d-4e75-8c42-0b56b20782cc","name":"f54ec815-5a6d-4e75-8c42-0b56b20782cc","status":"Succeeded","startTime":"2020-01-13T13:16:38.6904122Z","endTime":"2020-01-13T13:16:39.3778876Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3","name":"56ee995b-b0b4-4ced-8a41-f9295eca8ef3","status":"Succeeded","startTime":"2020-05-27T05:25:47.8001033Z","endTime":"2020-05-27T05:25:48.3313449Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:17:10 GMT + - Wed, 27 May 2020 05:26:19 GMT expires: - '-1' pragma: @@ -789,8 +741,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -807,7 +759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:17:20 GMT + - Wed, 27 May 2020 05:26:29 GMT expires: - '-1' pragma: @@ -831,8 +783,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -849,7 +801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:17:31 GMT + - Wed, 27 May 2020 05:26:39 GMT expires: - '-1' pragma: @@ -875,8 +827,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -888,17 +840,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f58e191-f446-4ab2-9b6c-01b78c276aa5?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:17:33 GMT + - Wed, 27 May 2020 05:26:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f58e191-f446-4ab2-9b6c-01b78c276aa5?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -910,7 +862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14977' x-powered-by: - ASP.NET status: @@ -926,24 +878,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f58e191-f446-4ab2-9b6c-01b78c276aa5?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f58e191-f446-4ab2-9b6c-01b78c276aa5","name":"4f58e191-f446-4ab2-9b6c-01b78c276aa5","status":"Succeeded","startTime":"2020-01-13T13:17:33.3350417Z","endTime":"2020-01-13T13:17:34.2594851Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e","name":"8403bfcc-b264-455e-bd95-34953c29ea4e","status":"Succeeded","startTime":"2020-05-27T05:26:42.2870243Z","endTime":"2020-05-27T05:26:42.4432602Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:05 GMT + - Wed, 27 May 2020 05:27:13 GMT expires: - '-1' pragma: @@ -975,8 +927,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -993,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:07 GMT + - Wed, 27 May 2020 05:27:16 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml index 7670650723cd..8cced6d4c42e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A18%3A16.2207999Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A27%3A24.2232174Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b13a7669-63b6-4735-a293-73ee1dde134c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:17 GMT + - Wed, 27 May 2020 05:27:26 GMT etag: - - W/"datetime'2020-01-13T13%3A18%3A16.2207999Z'" + - W/"datetime'2020-05-27T05%3A27%3A24.2232174Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b13a7669-63b6-4735-a293-73ee1dde134c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b13a7669-63b6-4735-a293-73ee1dde134c","name":"b13a7669-63b6-4735-a293-73ee1dde134c","status":"Succeeded","startTime":"2020-01-13T13:18:15.7634411Z","endTime":"2020-01-13T13:18:17.0604466Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8","name":"5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8","status":"Succeeded","startTime":"2020-05-27T05:27:24.1388498Z","endTime":"2020-05-27T05:27:24.3107322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:48 GMT + - Wed, 27 May 2020 05:27:58 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A18%3A16.9434881Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A27%3A24.3062971Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:48 GMT + - Wed, 27 May 2020 05:27:59 GMT etag: - - W/"datetime'2020-01-13T13%3A18%3A16.9434881Z'" + - W/"datetime'2020-05-27T05%3A27%3A24.3062971Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A18%3A52.4793298Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A01.156491Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/04da1263-7c64-4d1c-b767-d792ddcf69a2?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:18:53 GMT + - Wed, 27 May 2020 05:28:01 GMT etag: - - W/"datetime'2020-01-13T13%3A18%3A52.4793298Z'" + - W/"datetime'2020-05-27T05%3A28%3A01.156491Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/04da1263-7c64-4d1c-b767-d792ddcf69a2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/04da1263-7c64-4d1c-b767-d792ddcf69a2","name":"04da1263-7c64-4d1c-b767-d792ddcf69a2","status":"Succeeded","startTime":"2020-01-13T13:18:52.0307235Z","endTime":"2020-01-13T13:18:53.5464478Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944","name":"f436a0d5-b4e3-4630-b5bc-a721de2e3944","status":"Succeeded","startTime":"2020-05-27T05:28:01.0803506Z","endTime":"2020-05-27T05:28:01.4553627Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:19:24 GMT + - Wed, 27 May 2020 05:28:33 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A18%3A53.4312365Z''\"","location":"westus2stage","properties":{"poolId":"4d443595-5942-2e26-bfdd-4c876a01a976","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A01.4607799Z''\"","location":"eastus","properties":{"poolId":"259f09ca-4bc3-c323-b272-e70e5ffc464a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:19:25 GMT + - Wed, 27 May 2020 05:28:33 GMT etag: - - W/"datetime'2020-01-13T13%3A18%3A53.4312365Z'" + - W/"datetime'2020-05-27T05%3A28%3A01.4607799Z'" expires: - '-1' pragma: @@ -331,28 +331,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A19%3A27.4316229Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"4d443595-5942-2e26-bfdd-4c876a01a976","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A36.2788896Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"259f09ca-4bc3-c323-b272-e70e5ffc464a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '589' + - '583' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:19:28 GMT + - Wed, 27 May 2020 05:28:58 GMT etag: - - W/"datetime'2020-01-13T13%3A19%3A27.4316229Z'" + - W/"datetime'2020-05-27T05%3A28%3A36.2788896Z'" expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' x-powered-by: - ASP.NET status: @@ -388,8 +388,64 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 + response: + body: + string: '{"error":{"code":"InternalServerError","message":"Encountered internal + server error. Please try again."}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + connection: + - close + content-length: + - '105' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 05:29:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + x-powered-by: + - ASP.NET + status: + code: 500 + message: Internal Server Error +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -401,17 +457,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef21e8b1-10ab-45b9-8dfd-731574af842c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:19:30 GMT + - Wed, 27 May 2020 05:29:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef21e8b1-10ab-45b9-8dfd-731574af842c?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -423,7 +479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -439,24 +495,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef21e8b1-10ab-45b9-8dfd-731574af842c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef21e8b1-10ab-45b9-8dfd-731574af842c","name":"ef21e8b1-10ab-45b9-8dfd-731574af842c","status":"Succeeded","startTime":"2020-01-13T13:19:31.0216681Z","endTime":"2020-01-13T13:19:31.8967074Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d","name":"30fa7803-591e-4f81-9e6f-3b4a4460ae3d","status":"Succeeded","startTime":"2020-05-27T05:29:39.8198683Z","endTime":"2020-05-27T05:29:40.3355106Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:20:02 GMT + - Wed, 27 May 2020 05:30:10 GMT expires: - '-1' pragma: @@ -488,8 +544,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -506,7 +562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:20:13 GMT + - Wed, 27 May 2020 05:30:20 GMT expires: - '-1' pragma: @@ -532,8 +588,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -545,17 +601,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0968772a-747d-4cf3-9d45-ba8f6aadd7ee?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:20:15 GMT + - Wed, 27 May 2020 05:30:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0968772a-747d-4cf3-9d45-ba8f6aadd7ee?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -567,7 +623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' x-powered-by: - ASP.NET status: @@ -583,24 +639,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0968772a-747d-4cf3-9d45-ba8f6aadd7ee?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0968772a-747d-4cf3-9d45-ba8f6aadd7ee","name":"0968772a-747d-4cf3-9d45-ba8f6aadd7ee","status":"Succeeded","startTime":"2020-01-13T13:20:15.2110519Z","endTime":"2020-01-13T13:20:16.0860852Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee","name":"6567b700-b0fa-4760-b78b-b2457e344fee","status":"Succeeded","startTime":"2020-05-27T05:30:21.9210079Z","endTime":"2020-05-27T05:30:22.0460025Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:20:47 GMT + - Wed, 27 May 2020 05:30:53 GMT expires: - '-1' pragma: @@ -632,8 +688,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -650,7 +706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:20:48 GMT + - Wed, 27 May 2020 05:30:56 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml index 05f18a92a8dd..7a1352508211 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A20%3A58.6324889Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A31%3A03.8211942Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6170b307-c2e6-4e8b-a3c3-0ad37b2d84bc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:20:59 GMT + - Wed, 27 May 2020 05:31:05 GMT etag: - - W/"datetime'2020-01-13T13%3A20%3A58.6324889Z'" + - W/"datetime'2020-05-27T05%3A31%3A03.8211942Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6170b307-c2e6-4e8b-a3c3-0ad37b2d84bc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6170b307-c2e6-4e8b-a3c3-0ad37b2d84bc","name":"6170b307-c2e6-4e8b-a3c3-0ad37b2d84bc","status":"Succeeded","startTime":"2020-01-13T13:20:58.1669298Z","endTime":"2020-01-13T13:20:59.4325918Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6","name":"a4e02ba9-a371-45f0-a75c-2a4e6a178ae6","status":"Succeeded","startTime":"2020-05-27T05:31:03.7392505Z","endTime":"2020-05-27T05:31:03.8956733Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:21:30 GMT + - Wed, 27 May 2020 05:31:37 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A20%3A59.3201445Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A31%3A03.887258Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:21:30 GMT + - Wed, 27 May 2020 05:31:37 GMT etag: - - W/"datetime'2020-01-13T13%3A20%3A59.3201445Z'" + - W/"datetime'2020-05-27T05%3A31%3A03.887258Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A21%3A34.4546101Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A31%3A40.6311977Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf80c80e-dac3-4d19-9092-d3d6c6b909ef?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:21:34 GMT + - Wed, 27 May 2020 05:31:41 GMT etag: - - W/"datetime'2020-01-13T13%3A21%3A34.4546101Z'" + - W/"datetime'2020-05-27T05%3A31%3A40.6311977Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf80c80e-dac3-4d19-9092-d3d6c6b909ef?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf80c80e-dac3-4d19-9092-d3d6c6b909ef","name":"bf80c80e-dac3-4d19-9092-d3d6c6b909ef","status":"Succeeded","startTime":"2020-01-13T13:21:34.012185Z","endTime":"2020-01-13T13:21:35.4028082Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b","name":"fe98cf77-31b2-4774-ac4e-42e719ceb21b","status":"Succeeded","startTime":"2020-05-27T05:31:40.5397485Z","endTime":"2020-05-27T05:31:40.9460162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:22:06 GMT + - Wed, 27 May 2020 05:32:11 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A21%3A35.3014166Z''\"","location":"westus2stage","properties":{"poolId":"a9c839e4-f346-d5dd-dc4b-ff6028b22d4e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A31%3A40.940493Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:22:07 GMT + - Wed, 27 May 2020 05:32:12 GMT etag: - - W/"datetime'2020-01-13T13%3A21%3A35.3014166Z'" + - W/"datetime'2020-05-27T05%3A31%3A40.940493Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Standard"}}' headers: Accept: @@ -327,36 +327,36 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A22%3A09.0685792Z''\"","location":"westus2stage","properties":{"provisioningState":"Updating","poolId":"a9c839e4-f346-d5dd-dc4b-ff6028b22d4e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A32%3A13.5795294Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Updating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b45e383f-845e-45ef-81fb-a19e7356b965?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1?api-version=2019-11-01 cache-control: - no-cache content-length: - - '562' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:22:09 GMT + - Wed, 27 May 2020 05:32:13 GMT etag: - - W/"datetime'2020-01-13T13%3A22%3A09.0685792Z'" + - W/"datetime'2020-05-27T05%3A32%3A13.5795294Z'" expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -390,24 +390,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b45e383f-845e-45ef-81fb-a19e7356b965?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b45e383f-845e-45ef-81fb-a19e7356b965","name":"b45e383f-845e-45ef-81fb-a19e7356b965","status":"Succeeded","startTime":"2020-01-13T13:22:08.5960446Z","endTime":"2020-01-13T13:22:10.0023551Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1","name":"f15e4b56-b5d1-4a63-9136-8a17599015d1","status":"Succeeded","startTime":"2020-05-27T05:32:13.5334843Z","endTime":"2020-05-27T05:32:13.9713483Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:22:39 GMT + - Wed, 27 May 2020 05:32:45 GMT expires: - '-1' pragma: @@ -439,26 +439,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A22%3A09.8963673Z''\"","location":"westus2stage","properties":{"poolId":"a9c839e4-f346-d5dd-dc4b-ff6028b22d4e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A32%3A13.9729051Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '564' + - '558' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:22:39 GMT + - Wed, 27 May 2020 05:32:46 GMT etag: - - W/"datetime'2020-01-13T13%3A22%3A09.8963673Z'" + - W/"datetime'2020-05-27T05%3A32%3A13.9729051Z'" expires: - '-1' pragma: @@ -492,8 +492,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -505,17 +505,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2be5eb-ef30-4b7c-9c1d-b515071f1434?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:22:43 GMT + - Wed, 27 May 2020 05:33:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2be5eb-ef30-4b7c-9c1d-b515071f1434?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -543,24 +543,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2be5eb-ef30-4b7c-9c1d-b515071f1434?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2be5eb-ef30-4b7c-9c1d-b515071f1434","name":"cd2be5eb-ef30-4b7c-9c1d-b515071f1434","status":"Succeeded","startTime":"2020-01-13T13:22:43.1727062Z","endTime":"2020-01-13T13:22:44.0164401Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640","name":"cd3d950c-4c91-4f09-a15c-8ed3fa1a5640","status":"Succeeded","startTime":"2020-05-27T05:33:06.5745468Z","endTime":"2020-05-27T05:33:07.0120658Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:23:14 GMT + - Wed, 27 May 2020 05:33:37 GMT expires: - '-1' pragma: @@ -592,8 +592,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -610,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:23:24 GMT + - Wed, 27 May 2020 05:33:48 GMT expires: - '-1' pragma: @@ -636,8 +636,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -649,17 +649,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9d8addfe-ffa1-4142-a30a-bd09805b2201?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:23:26 GMT + - Wed, 27 May 2020 05:33:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9d8addfe-ffa1-4142-a30a-bd09805b2201?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -687,24 +687,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9d8addfe-ffa1-4142-a30a-bd09805b2201?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9d8addfe-ffa1-4142-a30a-bd09805b2201","name":"9d8addfe-ffa1-4142-a30a-bd09805b2201","status":"Succeeded","startTime":"2020-01-13T13:23:26.3420194Z","endTime":"2020-01-13T13:23:27.4513809Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d","name":"5c65006c-b990-4fe0-a8c0-bbcaa9043c1d","status":"Succeeded","startTime":"2020-05-27T05:33:49.709604Z","endTime":"2020-05-27T05:33:49.9598477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:23:57 GMT + - Wed, 27 May 2020 05:34:20 GMT expires: - '-1' pragma: @@ -736,8 +736,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -754,7 +754,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:24:00 GMT + - Wed, 27 May 2020 05:34:22 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml index e9125d2682eb..7be9bd65bd6c 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A25%3A35.8234911Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A01%3A37.3180055Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/78889b1b-8a2c-4003-95ea-203e8379a87d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:25:36 GMT + - Wed, 27 May 2020 13:01:39 GMT etag: - - W/"datetime'2020-01-13T13%3A25%3A35.8234911Z'" + - W/"datetime'2020-05-27T13%3A01%3A37.3180055Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/78889b1b-8a2c-4003-95ea-203e8379a87d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/78889b1b-8a2c-4003-95ea-203e8379a87d","name":"78889b1b-8a2c-4003-95ea-203e8379a87d","status":"Succeeded","startTime":"2020-01-13T13:25:35.2732734Z","endTime":"2020-01-13T13:25:36.6170156Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3","name":"ba428af8-a24d-46ec-8380-e06a43ddabf3","status":"Succeeded","startTime":"2020-05-27T13:01:37.2752399Z","endTime":"2020-05-27T13:01:37.3846166Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:26:07 GMT + - Wed, 27 May 2020 13:02:13 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A25%3A36.513149Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A01%3A37.3840685Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '380' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:26:08 GMT + - Wed, 27 May 2020 13:02:13 GMT etag: - - W/"datetime'2020-01-13T13%3A25%3A36.513149Z'" + - W/"datetime'2020-05-27T13%3A01%3A37.3840685Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A26%3A11.9348871Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A02%3A16.9237837Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8996e2d9-9572-4791-8977-e4aa6e97f065?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:26:12 GMT + - Wed, 27 May 2020 13:02:18 GMT etag: - - W/"datetime'2020-01-13T13%3A26%3A11.9348871Z'" + - W/"datetime'2020-05-27T13%3A02%3A16.9237837Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8996e2d9-9572-4791-8977-e4aa6e97f065?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8996e2d9-9572-4791-8977-e4aa6e97f065","name":"8996e2d9-9572-4791-8977-e4aa6e97f065","status":"Succeeded","startTime":"2020-01-13T13:26:11.4549449Z","endTime":"2020-01-13T13:26:12.9080862Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7","name":"89c6bece-8d8d-4e88-beec-6cec270341e7","status":"Succeeded","startTime":"2020-05-27T13:02:16.8662645Z","endTime":"2020-05-27T13:02:17.288147Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '543' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:26:44 GMT + - Wed, 27 May 2020 13:02:50 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A26%3A12.8077183Z''\"","location":"westus2stage","properties":{"poolId":"33051ca7-eb8a-3ec8-4a25-26bb8de1b10d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A02%3A17.2891321Z''\"","location":"eastus","properties":{"poolId":"37e500c0-1a92-4f27-ecc1-da92331956f4","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:26:44 GMT + - Wed, 27 May 2020 13:02:51 GMT etag: - - W/"datetime'2020-01-13T13%3A26%3A12.8077183Z'" + - W/"datetime'2020-05-27T13%3A02%3A17.2891321Z'" expires: - '-1' pragma: @@ -317,8 +317,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A26%3A59.8885617Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A03%3A04.6972778Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '764' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:27:00 GMT + - Wed, 27 May 2020 13:03:05 GMT etag: - - W/"datetime'2020-01-13T13%3A26%3A59.8885617Z'" + - W/"datetime'2020-05-27T13%3A03%3A04.6972778Z'" expires: - '-1' pragma: @@ -384,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Creating","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:27:31 GMT + - Wed, 27 May 2020 13:03:39 GMT expires: - '-1' pragma: @@ -433,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Creating","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:28:02 GMT + - Wed, 27 May 2020 13:04:31 GMT expires: - '-1' pragma: @@ -482,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Creating","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:28:32 GMT + - Wed, 27 May 2020 13:05:01 GMT expires: - '-1' pragma: @@ -531,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Creating","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:29:03 GMT + - Wed, 27 May 2020 13:05:31 GMT expires: - '-1' pragma: @@ -580,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Creating","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:29:33 GMT + - Wed, 27 May 2020 13:06:03 GMT expires: - '-1' pragma: @@ -629,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0db2e3c-d79c-4cd6-b654-37c29868c439","name":"c0db2e3c-d79c-4cd6-b654-37c29868c439","status":"Succeeded","startTime":"2020-01-13T13:26:59.4538969Z","endTime":"2020-01-13T13:29:35.2143275Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:30:05 GMT + - Wed, 27 May 2020 13:06:33 GMT expires: - '-1' pragma: @@ -678,26 +679,124 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Succeeded","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"2020-05-27T13:07:12.8394952Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:07:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A29%3A35.1104028Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"f74511bc-53be-1000-795c-e012fdaa5900","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_7bcc00aa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f74511bc-53be-1000-795c-e012fdaa5900","fileSystemId":"f74511bc-53be-1000-795c-e012fdaa5900","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A07%3A12.8440065Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8623576a-9e6e-9e00-e478-02554d5bcab8","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_9b97807c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:30:05 GMT + - Wed, 27 May 2020 13:07:35 GMT etag: - - W/"datetime'2020-01-13T13%3A29%3A35.1104028Z'" + - W/"datetime'2020-05-27T13%3A07%3A12.8440065Z'" expires: - '-1' pragma: @@ -729,26 +828,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A29%3A35.1104028Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"f74511bc-53be-1000-795c-e012fdaa5900","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_7bcc00aa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f74511bc-53be-1000-795c-e012fdaa5900","fileSystemId":"f74511bc-53be-1000-795c-e012fdaa5900","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A07%3A12.8440065Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8623576a-9e6e-9e00-e478-02554d5bcab8","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_9b97807c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1393' + - '1362' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:30:06 GMT + - Wed, 27 May 2020 13:07:39 GMT expires: - '-1' pragma: @@ -782,8 +881,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -795,17 +894,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:30:08 GMT + - Wed, 27 May 2020 13:07:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -817,7 +916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' x-powered-by: - ASP.NET status: @@ -833,24 +932,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8","name":"f7808da5-6598-421d-bdf6-95e5c6e7e8c8","status":"Deleting","startTime":"2020-01-13T13:30:08.520964Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Deleting","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:30:39 GMT + - Wed, 27 May 2020 13:08:12 GMT expires: - '-1' pragma: @@ -882,24 +981,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8","name":"f7808da5-6598-421d-bdf6-95e5c6e7e8c8","status":"Deleting","startTime":"2020-01-13T13:30:08.520964Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Deleting","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:31:10 GMT + - Wed, 27 May 2020 13:08:44 GMT expires: - '-1' pragma: @@ -931,24 +1030,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7808da5-6598-421d-bdf6-95e5c6e7e8c8","name":"f7808da5-6598-421d-bdf6-95e5c6e7e8c8","status":"Succeeded","startTime":"2020-01-13T13:30:08.520964Z","endTime":"2020-01-13T13:31:17.5232675Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Succeeded","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"2020-05-27T13:08:53.260295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '570' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:31:40 GMT + - Wed, 27 May 2020 13:09:14 GMT expires: - '-1' pragma: @@ -980,8 +1079,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -999,7 +1098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:31:41 GMT + - Wed, 27 May 2020 13:09:15 GMT expires: - '-1' pragma: @@ -1031,8 +1130,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1049,7 +1148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:31:41 GMT + - Wed, 27 May 2020 13:09:16 GMT expires: - '-1' pragma: @@ -1075,8 +1174,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1088,17 +1187,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86570186-1330-4e90-9382-2f16a2d1ac2d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:31:53 GMT + - Wed, 27 May 2020 13:09:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86570186-1330-4e90-9382-2f16a2d1ac2d?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1110,7 +1209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14998' x-powered-by: - ASP.NET status: @@ -1126,24 +1225,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86570186-1330-4e90-9382-2f16a2d1ac2d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86570186-1330-4e90-9382-2f16a2d1ac2d","name":"86570186-1330-4e90-9382-2f16a2d1ac2d","status":"Succeeded","startTime":"2020-01-13T13:31:53.8686755Z","endTime":"2020-01-13T13:31:54.6656115Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094","name":"b8b3b974-c5dd-4127-8b1d-d1dd60e77094","status":"Succeeded","startTime":"2020-05-27T13:09:46.6398139Z","endTime":"2020-05-27T13:09:47.0617056Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:32:25 GMT + - Wed, 27 May 2020 13:10:18 GMT expires: - '-1' pragma: @@ -1177,8 +1276,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1190,7 +1289,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:32:36 GMT + - Wed, 27 May 2020 13:10:28 GMT expires: - '-1' pragma: @@ -1200,7 +1299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14997' status: code: 204 message: No Content @@ -1216,8 +1315,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1229,7 +1328,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:32:46 GMT + - Wed, 27 May 2020 13:10:39 GMT expires: - '-1' pragma: @@ -1239,7 +1338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14996' status: code: 204 message: No Content @@ -1255,8 +1354,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1268,7 +1367,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:32:56 GMT + - Wed, 27 May 2020 13:10:51 GMT expires: - '-1' pragma: @@ -1278,7 +1377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14995' status: code: 204 message: No Content @@ -1294,8 +1393,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1307,7 +1406,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:33:06 GMT + - Wed, 27 May 2020 13:11:02 GMT expires: - '-1' pragma: @@ -1317,7 +1416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14991' + - '14994' status: code: 204 message: No Content @@ -1331,8 +1430,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1349,7 +1448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:33:17 GMT + - Wed, 27 May 2020 13:11:13 GMT expires: - '-1' pragma: @@ -1375,8 +1474,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1388,17 +1487,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8f980dd1-25bd-4ef9-b7b6-7c016deb571e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:33:19 GMT + - Wed, 27 May 2020 13:11:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8f980dd1-25bd-4ef9-b7b6-7c016deb571e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1410,7 +1509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14990' + - '14993' x-powered-by: - ASP.NET status: @@ -1426,24 +1525,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8f980dd1-25bd-4ef9-b7b6-7c016deb571e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8f980dd1-25bd-4ef9-b7b6-7c016deb571e","name":"8f980dd1-25bd-4ef9-b7b6-7c016deb571e","status":"Succeeded","startTime":"2020-01-13T13:33:19.6800698Z","endTime":"2020-01-13T13:33:20.7112938Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151","name":"80f74a7a-73d1-40bf-9b93-e62842cc4151","status":"Succeeded","startTime":"2020-05-27T13:11:16.3822671Z","endTime":"2020-05-27T13:11:16.5385029Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:33:50 GMT + - Wed, 27 May 2020 13:12:03 GMT expires: - '-1' pragma: @@ -1475,8 +1574,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1493,7 +1592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:33:53 GMT + - Wed, 27 May 2020 13:12:06 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml index eb28c2f29d64..94b969c3eb19 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A34%3A03.0850246Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A12%3A18.4225245Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3fc97669-dd9f-48f7-8724-afc6cbe2f8c2?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:34:03 GMT + - Wed, 27 May 2020 13:12:19 GMT etag: - - W/"datetime'2020-01-13T13%3A34%3A03.0850246Z'" + - W/"datetime'2020-05-27T13%3A12%3A18.4225245Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3fc97669-dd9f-48f7-8724-afc6cbe2f8c2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3fc97669-dd9f-48f7-8724-afc6cbe2f8c2","name":"3fc97669-dd9f-48f7-8724-afc6cbe2f8c2","status":"Succeeded","startTime":"2020-01-13T13:34:02.5135096Z","endTime":"2020-01-13T13:34:03.9779697Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0","name":"031331f0-3281-4883-8f78-24ff6210cdd0","status":"Succeeded","startTime":"2020-05-27T13:12:18.327369Z","endTime":"2020-05-27T13:12:18.499249Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '508' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:34:34 GMT + - Wed, 27 May 2020 13:12:50 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A34%3A03.8647674Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A12%3A18.4915897Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:34:35 GMT + - Wed, 27 May 2020 13:12:51 GMT etag: - - W/"datetime'2020-01-13T13%3A34%3A03.8647674Z'" + - W/"datetime'2020-05-27T13%3A12%3A18.4915897Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A34%3A38.6719226Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A12%3A55.3305335Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6cbb30f5-cc44-4cde-8ba1-5bd4eb9a5d69?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:34:39 GMT + - Wed, 27 May 2020 13:12:56 GMT etag: - - W/"datetime'2020-01-13T13%3A34%3A38.6719226Z'" + - W/"datetime'2020-05-27T13%3A12%3A55.3305335Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6cbb30f5-cc44-4cde-8ba1-5bd4eb9a5d69?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6cbb30f5-cc44-4cde-8ba1-5bd4eb9a5d69","name":"6cbb30f5-cc44-4cde-8ba1-5bd4eb9a5d69","status":"Succeeded","startTime":"2020-01-13T13:34:38.1985717Z","endTime":"2020-01-13T13:34:39.7298436Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d","name":"53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d","status":"Succeeded","startTime":"2020-05-27T13:12:55.2728138Z","endTime":"2020-05-27T13:13:14.5890584Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:35:10 GMT + - Wed, 27 May 2020 13:13:27 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A34%3A39.616821Z''\"","location":"westus2stage","properties":{"poolId":"6e075192-89b7-51bb-0a55-b86b1d227152","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A13%3A14.5777743Z''\"","location":"eastus","properties":{"poolId":"86abb96f-8db2-e877-393d-15f1f86be65e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '562' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:35:11 GMT + - Wed, 27 May 2020 13:13:47 GMT etag: - - W/"datetime'2020-01-13T13%3A34%3A39.616821Z'" + - W/"datetime'2020-05-27T13%3A13%3A14.5777743Z'" expires: - '-1' pragma: @@ -317,8 +317,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A35%3A25.6506673Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A14%3A24.023019Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '763' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:35:26 GMT + - Wed, 27 May 2020 13:14:25 GMT etag: - - W/"datetime'2020-01-13T13%3A35%3A25.6506673Z'" + - W/"datetime'2020-05-27T13%3A14%3A24.023019Z'" expires: - '-1' pragma: @@ -384,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:35:58 GMT + - Wed, 27 May 2020 13:14:57 GMT expires: - '-1' pragma: @@ -433,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:36:28 GMT + - Wed, 27 May 2020 13:15:27 GMT expires: - '-1' pragma: @@ -482,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:36:58 GMT + - Wed, 27 May 2020 13:15:57 GMT expires: - '-1' pragma: @@ -531,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:37:29 GMT + - Wed, 27 May 2020 13:16:28 GMT expires: - '-1' pragma: @@ -580,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:37:59 GMT + - Wed, 27 May 2020 13:17:00 GMT expires: - '-1' pragma: @@ -629,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Creating","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:38:30 GMT + - Wed, 27 May 2020 13:17:30 GMT expires: - '-1' pragma: @@ -678,24 +679,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1a791260-976a-445f-b360-786fb202ac45","name":"1a791260-976a-445f-b360-786fb202ac45","status":"Succeeded","startTime":"2020-01-13T13:35:25.1306006Z","endTime":"2020-01-13T13:38:35.5408416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '559' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:39:02 GMT + - Wed, 27 May 2020 13:18:01 GMT expires: - '-1' pragma: @@ -727,26 +728,124 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:18:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Succeeded","startTime":"2020-05-27T13:14:23.969099Z","endTime":"2020-05-27T13:18:43.333262Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:19:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A38%3A35.4324397Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_bc3b9a66","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","fileSystemId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A18%3A43.3233641Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_3fdc2a8a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:39:02 GMT + - Wed, 27 May 2020 13:19:33 GMT etag: - - W/"datetime'2020-01-13T13%3A38%3A35.4324397Z'" + - W/"datetime'2020-05-27T13%3A18%3A43.3233641Z'" expires: - '-1' pragma: @@ -778,28 +877,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A38%3A35.4324397Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_bc3b9a66","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","fileSystemId":"7c3c93a1-b5b4-a0cf-b0e7-41bd37312b78","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A18%3A43.3233641Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_3fdc2a8a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:39:04 GMT + - Wed, 27 May 2020 13:19:36 GMT etag: - - W/"datetime'2020-01-13T13%3A38%3A35.4324397Z'" + - W/"datetime'2020-05-27T13%3A18%3A43.3233641Z'" expires: - '-1' pragma: @@ -833,8 +932,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -846,17 +945,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:39:05 GMT + - Wed, 27 May 2020 13:19:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -884,24 +983,73 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199","name":"133d567c-1030-49b8-b2ab-93cee2ea3199","status":"Deleting","startTime":"2020-01-13T13:39:05.3951027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:39:36 GMT + - Wed, 27 May 2020 13:20:41 GMT expires: - '-1' pragma: @@ -933,24 +1081,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199","name":"133d567c-1030-49b8-b2ab-93cee2ea3199","status":"Deleting","startTime":"2020-01-13T13:39:05.3951027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:40:06 GMT + - Wed, 27 May 2020 13:21:12 GMT expires: - '-1' pragma: @@ -982,24 +1130,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/133d567c-1030-49b8-b2ab-93cee2ea3199","name":"133d567c-1030-49b8-b2ab-93cee2ea3199","status":"Succeeded","startTime":"2020-01-13T13:39:05.3951027Z","endTime":"2020-01-13T13:40:20.0187253Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Succeeded","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"2020-05-27T13:21:28.8189846Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:40:37 GMT + - Wed, 27 May 2020 13:21:42 GMT expires: - '-1' pragma: @@ -1031,8 +1179,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1049,7 +1197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:43:58 GMT + - Wed, 27 May 2020 13:25:03 GMT expires: - '-1' pragma: @@ -1075,8 +1223,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1088,17 +1236,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dc94495-f3f5-44da-b0c7-dfad769bc864?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:44:11 GMT + - Wed, 27 May 2020 13:25:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dc94495-f3f5-44da-b0c7-dfad769bc864?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1126,24 +1274,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dc94495-f3f5-44da-b0c7-dfad769bc864?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dc94495-f3f5-44da-b0c7-dfad769bc864","name":"5dc94495-f3f5-44da-b0c7-dfad769bc864","status":"Succeeded","startTime":"2020-01-13T13:44:11.236265Z","endTime":"2020-01-13T13:44:14.0446318Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e","name":"bb880c39-d2a0-494b-99b3-fbc74e58601e","status":"Succeeded","startTime":"2020-05-27T13:25:15.9419964Z","endTime":"2020-05-27T13:25:16.4564153Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:44:42 GMT + - Wed, 27 May 2020 13:25:47 GMT expires: - '-1' pragma: @@ -1177,8 +1325,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1190,7 +1338,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:44:52 GMT + - Wed, 27 May 2020 13:25:58 GMT expires: - '-1' pragma: @@ -1216,8 +1364,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1229,7 +1377,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:45:03 GMT + - Wed, 27 May 2020 13:26:08 GMT expires: - '-1' pragma: @@ -1255,8 +1403,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1268,7 +1416,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:45:14 GMT + - Wed, 27 May 2020 13:26:18 GMT expires: - '-1' pragma: @@ -1294,8 +1442,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1307,7 +1455,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 13:45:24 GMT + - Wed, 27 May 2020 13:26:29 GMT expires: - '-1' pragma: @@ -1331,8 +1479,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1349,7 +1497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:45:34 GMT + - Wed, 27 May 2020 13:26:39 GMT expires: - '-1' pragma: @@ -1375,8 +1523,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1388,17 +1536,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de303db9-4110-4729-808a-5c21caab539e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:45:37 GMT + - Wed, 27 May 2020 13:26:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de303db9-4110-4729-808a-5c21caab539e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1426,24 +1574,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de303db9-4110-4729-808a-5c21caab539e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de303db9-4110-4729-808a-5c21caab539e","name":"de303db9-4110-4729-808a-5c21caab539e","status":"Succeeded","startTime":"2020-01-13T13:45:36.9820113Z","endTime":"2020-01-13T13:45:37.8415593Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035","name":"50d75e0f-b1a7-4661-be05-3b0e2be8a035","status":"Succeeded","startTime":"2020-05-27T13:26:42.5287168Z","endTime":"2020-05-27T13:27:01.6434651Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:08 GMT + - Wed, 27 May 2020 13:27:14 GMT expires: - '-1' pragma: @@ -1475,35 +1623,42 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The resource with identifier + ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + is not found."}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '170' + - '239' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:10 GMT + - Wed, 27 May 2020 13:27:17 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-powered-by: + - ASP.NET status: code: 404 message: Not Found diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml index 9e6b0e68859f..cac2810e6f3f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A46%3A19.2191997Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A27%3A27.527291Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7ccbf44-0ef2-44e7-b52e-1ac17fe796a5?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '373' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:19 GMT + - Wed, 27 May 2020 13:27:29 GMT etag: - - W/"datetime'2020-01-13T13%3A46%3A19.2191997Z'" + - W/"datetime'2020-05-27T13%3A27%3A27.527291Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7ccbf44-0ef2-44e7-b52e-1ac17fe796a5?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7ccbf44-0ef2-44e7-b52e-1ac17fe796a5","name":"d7ccbf44-0ef2-44e7-b52e-1ac17fe796a5","status":"Succeeded","startTime":"2020-01-13T13:46:18.7985635Z","endTime":"2020-01-13T13:46:20.0173451Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b","name":"f21667a5-bf85-4f19-90c2-b097032e7b7b","status":"Succeeded","startTime":"2020-05-27T13:27:27.4677822Z","endTime":"2020-05-27T13:27:27.5927804Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:51 GMT + - Wed, 27 May 2020 13:28:02 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T13%3A46%3A19.9038512Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A27%3A27.595356Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:51 GMT + - Wed, 27 May 2020 13:28:02 GMT etag: - - W/"datetime'2020-01-13T13%3A46%3A19.9038512Z'" + - W/"datetime'2020-05-27T13%3A27%3A27.595356Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A46%3A55.3406048Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A28%3A06.1971764Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/447d53ba-6b8f-4eed-854f-e71b8ac91ab9?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:46:56 GMT + - Wed, 27 May 2020 13:28:06 GMT etag: - - W/"datetime'2020-01-13T13%3A46%3A55.3406048Z'" + - W/"datetime'2020-05-27T13%3A28%3A06.1971764Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/447d53ba-6b8f-4eed-854f-e71b8ac91ab9?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/447d53ba-6b8f-4eed-854f-e71b8ac91ab9","name":"447d53ba-6b8f-4eed-854f-e71b8ac91ab9","status":"Succeeded","startTime":"2020-01-13T13:46:54.9098146Z","endTime":"2020-01-13T13:46:56.3474391Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624","name":"86ce77ac-9869-4bcc-8a16-94e772978624","status":"Succeeded","startTime":"2020-05-27T13:28:06.1357507Z","endTime":"2020-05-27T13:28:06.5420122Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:47:26 GMT + - Wed, 27 May 2020 13:28:38 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T13%3A46%3A56.2364582Z''\"","location":"westus2stage","properties":{"poolId":"ec54ddba-3a3d-1415-624d-8f1bd2ac4585","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A28%3A06.5425057Z''\"","location":"eastus","properties":{"poolId":"15360574-8211-c61e-41ef-9fa2e8cd9cae","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:47:27 GMT + - Wed, 27 May 2020 13:28:39 GMT etag: - - W/"datetime'2020-01-13T13%3A46%3A56.2364582Z'" + - W/"datetime'2020-05-27T13%3A28%3A06.5425057Z'" expires: - '-1' pragma: @@ -317,8 +317,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A47%3A42.2793128Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A28%3A53.8176029Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '764' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:47:42 GMT + - Wed, 27 May 2020 13:28:54 GMT etag: - - W/"datetime'2020-01-13T13%3A47%3A42.2793128Z'" + - W/"datetime'2020-05-27T13%3A28%3A53.8176029Z'" expires: - '-1' pragma: @@ -384,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92","name":"125e490f-b9f5-4480-ab18-04d5f5a17c92","status":"Creating","startTime":"2020-01-13T13:47:41.8631248Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:48:33 GMT + - Wed, 27 May 2020 13:29:27 GMT expires: - '-1' pragma: @@ -433,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92","name":"125e490f-b9f5-4480-ab18-04d5f5a17c92","status":"Creating","startTime":"2020-01-13T13:47:41.8631248Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:49:03 GMT + - Wed, 27 May 2020 13:29:57 GMT expires: - '-1' pragma: @@ -482,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92","name":"125e490f-b9f5-4480-ab18-04d5f5a17c92","status":"Creating","startTime":"2020-01-13T13:47:41.8631248Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:49:34 GMT + - Wed, 27 May 2020 13:30:27 GMT expires: - '-1' pragma: @@ -531,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92","name":"125e490f-b9f5-4480-ab18-04d5f5a17c92","status":"Creating","startTime":"2020-01-13T13:47:41.8631248Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:50:05 GMT + - Wed, 27 May 2020 13:30:57 GMT expires: - '-1' pragma: @@ -580,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/125e490f-b9f5-4480-ab18-04d5f5a17c92","name":"125e490f-b9f5-4480-ab18-04d5f5a17c92","status":"Succeeded","startTime":"2020-01-13T13:47:41.8631248Z","endTime":"2020-01-13T13:50:34.1302174Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:50:35 GMT + - Wed, 27 May 2020 13:31:28 GMT expires: - '-1' pragma: @@ -629,26 +630,418 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:31:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:32:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:32:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:33:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:34:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:34:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:35:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Succeeded","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"2020-05-27T13:35:05.7824856Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:35:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A50%3A34.0171005Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"4476d00d-0808-1363-371a-6942600bd1f5","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_44aff3f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4476d00d-0808-1363-371a-6942600bd1f5","fileSystemId":"4476d00d-0808-1363-371a-6942600bd1f5","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A05.7775941Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:50:37 GMT + - Wed, 27 May 2020 13:35:36 GMT etag: - - W/"datetime'2020-01-13T13%3A50%3A34.0171005Z'" + - W/"datetime'2020-05-27T13%3A35%3A05.7775941Z'" expires: - '-1' pragma: @@ -671,8 +1064,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-2", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-2", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -681,34 +1075,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A50%3A43.5131493Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A46.79472Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ebba46e-5de9-4563-9bed-8f2be52ac705?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '762' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:50:44 GMT + - Wed, 27 May 2020 13:35:48 GMT etag: - - W/"datetime'2020-01-13T13%3A50%3A43.5131493Z'" + - W/"datetime'2020-05-27T13%3A35%3A46.79472Z'" expires: - '-1' pragma: @@ -722,7 +1116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -738,24 +1132,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ebba46e-5de9-4563-9bed-8f2be52ac705?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ebba46e-5de9-4563-9bed-8f2be52ac705","name":"8ebba46e-5de9-4563-9bed-8f2be52ac705","status":"Succeeded","startTime":"2020-01-13T13:50:43.0833214Z","endTime":"2020-01-13T13:50:55.0052372Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445","name":"90266bc8-5d72-48d2-8295-e5f97d8fa445","status":"Creating","startTime":"2020-05-27T13:35:46.7209036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:51:15 GMT + - Wed, 27 May 2020 13:36:20 GMT expires: - '-1' pragma: @@ -787,26 +1181,75 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445","name":"90266bc8-5d72-48d2-8295-e5f97d8fa445","status":"Succeeded","startTime":"2020-05-27T13:35:46.7209036Z","endTime":"2020-05-27T13:36:42.3497892Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:36:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A50%3A54.8979808Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"50cb850e-5794-cd60-11a5-37cfe3196043","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_44aff3f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"50cb850e-5794-cd60-11a5-37cfe3196043","fileSystemId":"50cb850e-5794-cd60-11a5-37cfe3196043","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A36%3A42.3466577Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"a5d344a8-8df7-5e15-4821-a55090123e0c","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:51:16 GMT + - Wed, 27 May 2020 13:36:51 GMT etag: - - W/"datetime'2020-01-13T13%3A50%3A54.8979808Z'" + - W/"datetime'2020-05-27T13%3A36%3A42.3466577Z'" expires: - '-1' pragma: @@ -838,26 +1281,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A50%3A34.0171005Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"4476d00d-0808-1363-371a-6942600bd1f5","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_44aff3f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4476d00d-0808-1363-371a-6942600bd1f5","fileSystemId":"4476d00d-0808-1363-371a-6942600bd1f5","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T13%3A50%3A54.8979808Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"50cb850e-5794-cd60-11a5-37cfe3196043","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_44aff3f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"50cb850e-5794-cd60-11a5-37cfe3196043","fileSystemId":"50cb850e-5794-cd60-11a5-37cfe3196043","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A05.7775941Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A36%3A42.3466577Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"a5d344a8-8df7-5e15-4821-a55090123e0c","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2775' + - '2713' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:51:16 GMT + - Wed, 27 May 2020 13:36:52 GMT expires: - '-1' pragma: @@ -891,8 +1334,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -904,17 +1347,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/37e5b042-56fd-4a50-b304-85788849ae9b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:51:19 GMT + - Wed, 27 May 2020 13:36:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/37e5b042-56fd-4a50-b304-85788849ae9b?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -926,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14989' + - '14993' x-powered-by: - ASP.NET status: @@ -942,24 +1385,73 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e","name":"2e8bcc16-50d6-40f2-9ede-234acbcfb85e","status":"Deleting","startTime":"2020-05-27T13:36:54.3265375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:37:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/37e5b042-56fd-4a50-b304-85788849ae9b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/37e5b042-56fd-4a50-b304-85788849ae9b","name":"37e5b042-56fd-4a50-b304-85788849ae9b","status":"Succeeded","startTime":"2020-01-13T13:51:18.5602566Z","endTime":"2020-01-13T13:51:22.7140385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e","name":"2e8bcc16-50d6-40f2-9ede-234acbcfb85e","status":"Succeeded","startTime":"2020-05-27T13:36:54.3265375Z","endTime":"2020-05-27T13:37:40.9679949Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:51:49 GMT + - Wed, 27 May 2020 13:37:56 GMT expires: - '-1' pragma: @@ -993,8 +1485,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1006,17 +1498,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 13:51:51 GMT + - Wed, 27 May 2020 13:37:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1028,7 +1520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14988' + - '14992' x-powered-by: - ASP.NET status: @@ -1044,24 +1536,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01","name":"36edf327-8650-4fac-b634-e5af9f1a9c01","status":"Deleting","startTime":"2020-01-13T13:51:51.5059389Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Deleting","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:52:22 GMT + - Wed, 27 May 2020 13:38:31 GMT expires: - '-1' pragma: @@ -1093,24 +1585,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01","name":"36edf327-8650-4fac-b634-e5af9f1a9c01","status":"Deleting","startTime":"2020-01-13T13:51:51.5059389Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Deleting","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:52:52 GMT + - Wed, 27 May 2020 13:39:02 GMT expires: - '-1' pragma: @@ -1142,24 +1634,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36edf327-8650-4fac-b634-e5af9f1a9c01","name":"36edf327-8650-4fac-b634-e5af9f1a9c01","status":"Succeeded","startTime":"2020-01-13T13:51:51.5059389Z","endTime":"2020-01-13T13:53:02.9529633Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Succeeded","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"2020-05-27T13:39:30.4451737Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:53:22 GMT + - Wed, 27 May 2020 13:39:32 GMT expires: - '-1' pragma: @@ -1191,8 +1683,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1209,7 +1701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 13:56:43 GMT + - Wed, 27 May 2020 13:42:54 GMT expires: - '-1' pragma: @@ -1233,8 +1725,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1251,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:00:04 GMT + - Wed, 27 May 2020 13:46:15 GMT expires: - '-1' pragma: @@ -1277,8 +1769,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1290,17 +1782,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86bf8acc-c370-4f6b-9226-500cb3f8b57f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:00:17 GMT + - Wed, 27 May 2020 13:46:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86bf8acc-c370-4f6b-9226-500cb3f8b57f?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1312,7 +1804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14987' + - '14999' x-powered-by: - ASP.NET status: @@ -1328,24 +1820,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86bf8acc-c370-4f6b-9226-500cb3f8b57f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86bf8acc-c370-4f6b-9226-500cb3f8b57f","name":"86bf8acc-c370-4f6b-9226-500cb3f8b57f","status":"Succeeded","startTime":"2020-01-13T14:00:17.1589406Z","endTime":"2020-01-13T14:00:18.0027168Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f","name":"fd264807-f315-4ac1-9f58-c4bdc9fd6f6f","status":"Succeeded","startTime":"2020-05-27T13:46:28.3940342Z","endTime":"2020-05-27T13:46:31.2389088Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:00:48 GMT + - Wed, 27 May 2020 13:46:59 GMT expires: - '-1' pragma: @@ -1379,8 +1871,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1392,7 +1884,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:00:59 GMT + - Wed, 27 May 2020 13:47:10 GMT expires: - '-1' pragma: @@ -1402,7 +1894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14986' + - '14998' status: code: 204 message: No Content @@ -1418,8 +1910,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1431,7 +1923,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:01:09 GMT + - Wed, 27 May 2020 13:47:22 GMT expires: - '-1' pragma: @@ -1441,7 +1933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14985' + - '14997' status: code: 204 message: No Content @@ -1457,8 +1949,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1470,7 +1962,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:01:19 GMT + - Wed, 27 May 2020 13:47:34 GMT expires: - '-1' pragma: @@ -1480,7 +1972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14984' + - '14996' status: code: 204 message: No Content @@ -1496,8 +1988,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1509,7 +2001,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:01:30 GMT + - Wed, 27 May 2020 13:47:53 GMT expires: - '-1' pragma: @@ -1519,7 +2011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14983' + - '14995' status: code: 204 message: No Content @@ -1533,8 +2025,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1551,7 +2043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:01:40 GMT + - Wed, 27 May 2020 13:48:04 GMT expires: - '-1' pragma: @@ -1577,8 +2069,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1590,17 +2082,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4491160f-03b4-47a6-8eb8-d55230dce58b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:01:42 GMT + - Wed, 27 May 2020 13:48:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4491160f-03b4-47a6-8eb8-d55230dce58b?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1612,7 +2104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14982' + - '14994' x-powered-by: - ASP.NET status: @@ -1628,24 +2120,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4491160f-03b4-47a6-8eb8-d55230dce58b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4491160f-03b4-47a6-8eb8-d55230dce58b","name":"4491160f-03b4-47a6-8eb8-d55230dce58b","status":"Succeeded","startTime":"2020-01-13T14:01:42.6565513Z","endTime":"2020-01-13T14:01:43.4690881Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc","name":"ebaced3d-3350-4030-9790-358a54c244cc","status":"Succeeded","startTime":"2020-05-27T13:48:06.1190295Z","endTime":"2020-05-27T13:48:06.3221611Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:02:14 GMT + - Wed, 27 May 2020 13:48:37 GMT expires: - '-1' pragma: @@ -1677,8 +2169,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1695,7 +2187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:02:16 GMT + - Wed, 27 May 2020 13:48:39 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml index 1a0fc6cf85d0..ed2a2339f004 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A02%3A24.8952147Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A48%3A51.0738202Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/28d73b27-cb28-4eec-8ade-60de694eaebc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304?api-version=2019-11-01 cache-control: - no-cache content-length: - - '381' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:02:25 GMT + - Wed, 27 May 2020 13:48:52 GMT etag: - - W/"datetime'2020-01-13T14%3A02%3A24.8952147Z'" + - W/"datetime'2020-05-27T13%3A48%3A51.0738202Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/28d73b27-cb28-4eec-8ade-60de694eaebc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/28d73b27-cb28-4eec-8ade-60de694eaebc","name":"28d73b27-cb28-4eec-8ade-60de694eaebc","status":"Succeeded","startTime":"2020-01-13T14:02:24.4643582Z","endTime":"2020-01-13T14:02:25.6362861Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304","name":"f326b2ed-d173-48aa-8eb5-09007ed07304","status":"Succeeded","startTime":"2020-05-27T13:48:51.004397Z","endTime":"2020-05-27T13:48:51.1293659Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:02:57 GMT + - Wed, 27 May 2020 13:49:23 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A02%3A25.5338234Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A48%3A51.1468921Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:02:57 GMT + - Wed, 27 May 2020 13:49:26 GMT etag: - - W/"datetime'2020-01-13T14%3A02%3A25.5338234Z'" + - W/"datetime'2020-05-27T13%3A48%3A51.1468921Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A03%3A01.086687Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A49%3A30.5124396Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ed0493da-d503-411d-a332-42bf77af6e43?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70?api-version=2019-11-01 cache-control: - no-cache content-length: - - '465' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:03:01 GMT + - Wed, 27 May 2020 13:49:32 GMT etag: - - W/"datetime'2020-01-13T14%3A03%3A01.086687Z'" + - W/"datetime'2020-05-27T13%3A49%3A30.5124396Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ed0493da-d503-411d-a332-42bf77af6e43?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ed0493da-d503-411d-a332-42bf77af6e43","name":"ed0493da-d503-411d-a332-42bf77af6e43","status":"Succeeded","startTime":"2020-01-13T14:03:00.6592962Z","endTime":"2020-01-13T14:03:01.9717998Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70","name":"453fc6f5-3735-4588-81eb-5220daf59d70","status":"Succeeded","startTime":"2020-05-27T13:49:30.3882751Z","endTime":"2020-05-27T13:49:30.7788843Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:03:33 GMT + - Wed, 27 May 2020 13:50:04 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A03%3A01.8694324Z''\"","location":"westus2stage","properties":{"poolId":"94c637be-19f6-d92f-7839-57549e8f62c3","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A49%3A30.7957102Z''\"","location":"eastus","properties":{"poolId":"a049018e-1e9c-764e-1cf1-13ff0cafe34e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:03:33 GMT + - Wed, 27 May 2020 13:50:05 GMT etag: - - W/"datetime'2020-01-13T14%3A03%3A01.8694324Z'" + - W/"datetime'2020-05-27T13%3A49%3A30.7957102Z'" expires: - '-1' pragma: @@ -317,8 +317,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A03%3A47.6570437Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A50%3A18.5332487Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '764' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:03:47 GMT + - Wed, 27 May 2020 13:50:19 GMT etag: - - W/"datetime'2020-01-13T14%3A03%3A47.6570437Z'" + - W/"datetime'2020-05-27T13%3A50%3A18.5332487Z'" expires: - '-1' pragma: @@ -384,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Creating","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:04:19 GMT + - Wed, 27 May 2020 13:50:52 GMT expires: - '-1' pragma: @@ -433,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Creating","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:05:09 GMT + - Wed, 27 May 2020 13:51:22 GMT expires: - '-1' pragma: @@ -482,27 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"error":{"code":"InternalServerError","message":"Encountered internal - server error. Please try again."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache - connection: - - close content-length: - - '105' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:06:10 GMT + - Wed, 27 May 2020 13:51:53 GMT expires: - '-1' pragma: @@ -513,15 +511,17 @@ interactions: - 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: - - service x-powered-by: - ASP.NET status: - code: 500 - message: Internal Server Error + code: 200 + message: OK - request: body: null headers: @@ -532,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Creating","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:06:11 GMT + - Wed, 27 May 2020 13:52:24 GMT expires: - '-1' pragma: @@ -581,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Creating","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:06:41 GMT + - Wed, 27 May 2020 13:52:54 GMT expires: - '-1' pragma: @@ -630,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Creating","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:07:12 GMT + - Wed, 27 May 2020 13:53:25 GMT expires: - '-1' pragma: @@ -679,24 +679,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/220ee4fa-531c-4902-9ce3-49615f29c450","name":"220ee4fa-531c-4902-9ce3-49615f29c450","status":"Succeeded","startTime":"2020-01-13T14:03:47.2095056Z","endTime":"2020-01-13T14:07:42.7837817Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:07:42 GMT + - Wed, 27 May 2020 13:53:56 GMT expires: - '-1' pragma: @@ -728,26 +728,75 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Succeeded","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"2020-05-27T13:54:16.6398995Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:54:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A07%3A42.6770358Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"94df2766-52bc-7285-5d65-a22bfb7ea818","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_49618ee5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"94df2766-52bc-7285-5d65-a22bfb7ea818","fileSystemId":"94df2766-52bc-7285-5d65-a22bfb7ea818","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A54%3A16.6553129Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b7b9181e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:07:44 GMT + - Wed, 27 May 2020 13:54:27 GMT etag: - - W/"datetime'2020-01-13T14%3A07%3A42.6770358Z'" + - W/"datetime'2020-05-27T13%3A54%3A16.6553129Z'" expires: - '-1' pragma: @@ -783,28 +832,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A07%3A48.1002015Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"94df2766-52bc-7285-5d65-a22bfb7ea818","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_49618ee5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"94df2766-52bc-7285-5d65-a22bfb7ea818","fileSystemId":"94df2766-52bc-7285-5d65-a22bfb7ea818","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A54%3A32.2151542Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b7b9181e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:07:52 GMT + - Wed, 27 May 2020 13:54:39 GMT etag: - - W/"datetime'2020-01-13T14%3A07%3A48.1002015Z'" + - W/"datetime'2020-05-27T13%3A54%3A32.2151542Z'" expires: - '-1' pragma: @@ -840,8 +889,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -853,17 +902,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:07:54 GMT + - Wed, 27 May 2020 13:54:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -875,7 +924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -891,24 +940,73 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Deleting","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 13:55:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97","name":"494b34cd-d8cf-49a4-af2b-466c05285f97","status":"Deleting","startTime":"2020-01-13T14:07:53.771311Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Deleting","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '565' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:08:25 GMT + - Wed, 27 May 2020 13:55:43 GMT expires: - '-1' pragma: @@ -940,24 +1038,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494b34cd-d8cf-49a4-af2b-466c05285f97","name":"494b34cd-d8cf-49a4-af2b-466c05285f97","status":"Succeeded","startTime":"2020-01-13T14:07:53.771311Z","endTime":"2020-01-13T14:08:52.0110379Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Succeeded","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"2020-05-27T13:55:55.9196462Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:08:55 GMT + - Wed, 27 May 2020 13:56:13 GMT expires: - '-1' pragma: @@ -989,8 +1087,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1007,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:12:16 GMT + - Wed, 27 May 2020 13:59:35 GMT expires: - '-1' pragma: @@ -1033,8 +1131,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1046,17 +1144,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d61552be-8ab9-408e-abaa-e8420b910dfc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:12:29 GMT + - Wed, 27 May 2020 13:59:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d61552be-8ab9-408e-abaa-e8420b910dfc?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1084,24 +1182,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d61552be-8ab9-408e-abaa-e8420b910dfc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d61552be-8ab9-408e-abaa-e8420b910dfc","name":"d61552be-8ab9-408e-abaa-e8420b910dfc","status":"Succeeded","startTime":"2020-01-13T14:12:29.2192359Z","endTime":"2020-01-13T14:12:30.1567129Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf","name":"46937acc-fbc8-41ce-97db-dd24f00eb5cf","status":"Succeeded","startTime":"2020-05-27T13:59:48.0649058Z","endTime":"2020-05-27T13:59:48.5180899Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:13:00 GMT + - Wed, 27 May 2020 14:00:19 GMT expires: - '-1' pragma: @@ -1135,8 +1233,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1148,7 +1246,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:13:11 GMT + - Wed, 27 May 2020 14:00:30 GMT expires: - '-1' pragma: @@ -1174,8 +1272,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1187,7 +1285,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:13:21 GMT + - Wed, 27 May 2020 14:00:40 GMT expires: - '-1' pragma: @@ -1213,8 +1311,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1226,7 +1324,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:13:31 GMT + - Wed, 27 May 2020 14:00:51 GMT expires: - '-1' pragma: @@ -1252,8 +1350,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1265,7 +1363,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:13:41 GMT + - Wed, 27 May 2020 14:01:02 GMT expires: - '-1' pragma: @@ -1289,8 +1387,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1307,7 +1405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:13:51 GMT + - Wed, 27 May 2020 14:01:12 GMT expires: - '-1' pragma: @@ -1333,8 +1431,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1346,17 +1444,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a03fe2-a862-4fcd-bc0b-1a8f85bdc5c1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:13:54 GMT + - Wed, 27 May 2020 14:01:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a03fe2-a862-4fcd-bc0b-1a8f85bdc5c1?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1384,24 +1482,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a03fe2-a862-4fcd-bc0b-1a8f85bdc5c1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a03fe2-a862-4fcd-bc0b-1a8f85bdc5c1","name":"63a03fe2-a862-4fcd-bc0b-1a8f85bdc5c1","status":"Succeeded","startTime":"2020-01-13T14:13:54.9298269Z","endTime":"2020-01-13T14:13:55.7892115Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571","name":"68195ab8-6083-4b95-934c-68e0b9acc571","status":"Succeeded","startTime":"2020-05-27T14:01:15.8858856Z","endTime":"2020-05-27T14:01:16.2608585Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:14:26 GMT + - Wed, 27 May 2020 14:01:47 GMT expires: - '-1' pragma: @@ -1433,8 +1531,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1451,7 +1549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:14:28 GMT + - Wed, 27 May 2020 14:01:49 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml index f12a09735be4..b27ddae7e353 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "eastus"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A14%3A37.718974Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T14%3A01%3A59.6159583Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/75dffe49-570e-4fc4-9dfc-c958971eaa80?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4?api-version=2019-11-01 cache-control: - no-cache content-length: - - '379' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:14:37 GMT + - Wed, 27 May 2020 14:02:00 GMT etag: - - W/"datetime'2020-01-13T14%3A14%3A37.718974Z'" + - W/"datetime'2020-05-27T14%3A01%3A59.6159583Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/75dffe49-570e-4fc4-9dfc-c958971eaa80?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/75dffe49-570e-4fc4-9dfc-c958971eaa80","name":"75dffe49-570e-4fc4-9dfc-c958971eaa80","status":"Succeeded","startTime":"2020-01-13T14:14:37.2730868Z","endTime":"2020-01-13T14:14:38.4762034Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4","name":"3e1994ca-77a1-48c6-9d10-d9b1027876f4","status":"Succeeded","startTime":"2020-05-27T14:01:59.5771278Z","endTime":"2020-05-27T14:01:59.7021601Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:15:09 GMT + - Wed, 27 May 2020 14:02:33 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A14%3A38.3745996Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T14%3A01%3A59.705044Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '381' + - '374' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:15:10 GMT + - Wed, 27 May 2020 14:02:33 GMT etag: - - W/"datetime'2020-01-13T14%3A14%3A38.3745996Z'" + - W/"datetime'2020-05-27T14%3A01%3A59.705044Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '88' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US location: - - westus2stage + - eastus method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A15%3A13.8283686Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T14%3A02%3A38.1717413Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f6388873-cc9d-4974-b3aa-364a2f63181b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:15:14 GMT + - Wed, 27 May 2020 14:02:39 GMT etag: - - W/"datetime'2020-01-13T14%3A15%3A13.8283686Z'" + - W/"datetime'2020-05-27T14%3A02%3A38.1717413Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f6388873-cc9d-4974-b3aa-364a2f63181b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f6388873-cc9d-4974-b3aa-364a2f63181b","name":"f6388873-cc9d-4974-b3aa-364a2f63181b","status":"Succeeded","startTime":"2020-01-13T14:15:13.3216967Z","endTime":"2020-01-13T14:15:14.7279447Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747","name":"ab1dfd74-9090-4400-837f-b14621638747","status":"Succeeded","startTime":"2020-05-27T14:02:37.9969683Z","endTime":"2020-05-27T14:02:38.4969758Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:15:45 GMT + - Wed, 27 May 2020 14:03:10 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A15%3A14.6201229Z''\"","location":"westus2stage","properties":{"poolId":"66b86389-af7a-6e93-3232-94b4213b15d5","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T14%3A02%3A38.5000546Z''\"","location":"eastus","properties":{"poolId":"f36a5af3-f2f9-10a8-a62c-2367fa96f435","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:15:46 GMT + - Wed, 27 May 2020 14:03:10 GMT etag: - - W/"datetime'2020-01-13T14%3A15%3A14.6201229Z'" + - W/"datetime'2020-05-27T14%3A02%3A38.5000546Z'" expires: - '-1' pragma: @@ -317,8 +317,9 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '344' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A16%3A00.2225515Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A03%3A25.0894973Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '764' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:16:00 GMT + - Wed, 27 May 2020 14:03:25 GMT etag: - - W/"datetime'2020-01-13T14%3A16%3A00.2225515Z'" + - W/"datetime'2020-05-27T14%3A03%3A25.0894973Z'" expires: - '-1' pragma: @@ -384,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Creating","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:16:31 GMT + - Wed, 27 May 2020 14:03:58 GMT expires: - '-1' pragma: @@ -433,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Creating","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:17:01 GMT + - Wed, 27 May 2020 14:04:28 GMT expires: - '-1' pragma: @@ -482,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Creating","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:17:32 GMT + - Wed, 27 May 2020 14:04:59 GMT expires: - '-1' pragma: @@ -531,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Creating","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:18:03 GMT + - Wed, 27 May 2020 14:05:30 GMT expires: - '-1' pragma: @@ -580,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Creating","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:18:33 GMT + - Wed, 27 May 2020 14:06:00 GMT expires: - '-1' pragma: @@ -629,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c70cd01d-9ab5-484d-8743-f65202e02e83","name":"c70cd01d-9ab5-484d-8743-f65202e02e83","status":"Succeeded","startTime":"2020-01-13T14:15:59.7958642Z","endTime":"2020-01-13T14:18:44.9602191Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:19:04 GMT + - Wed, 27 May 2020 14:06:31 GMT expires: - '-1' pragma: @@ -678,26 +679,124 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 14:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Succeeded","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"2020-05-27T14:07:16.6653431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '571' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 May 2020 14:07:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A18%3A44.8383274Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d53e7a2c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A07%3A16.6621611Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:19:05 GMT + - Wed, 27 May 2020 14:07:33 GMT etag: - - W/"datetime'2020-01-13T14%3A18%3A44.8383274Z'" + - W/"datetime'2020-05-27T14%3A07%3A16.6621611Z'" expires: - '-1' pragma: @@ -720,7 +819,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: @@ -730,34 +829,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '316' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A19%3A09.3416629Z''\"","location":"westus2stage","properties":{"provisioningState":"Updating","fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d53e7a2c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A07%3A41.304664Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Updating","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/38eabd0a-f5c5-4d77-885a-b470421f0892?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07?api-version=2019-11-01 cache-control: - no-cache content-length: - - '1380' + - '1348' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:19:09 GMT + - Wed, 27 May 2020 14:07:41 GMT etag: - - W/"datetime'2020-01-13T14%3A19%3A09.3416629Z'" + - W/"datetime'2020-05-27T14%3A07%3A41.304664Z'" expires: - '-1' pragma: @@ -791,24 +890,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/38eabd0a-f5c5-4d77-885a-b470421f0892?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/38eabd0a-f5c5-4d77-885a-b470421f0892","name":"38eabd0a-f5c5-4d77-885a-b470421f0892","status":"Succeeded","startTime":"2020-01-13T14:19:08.9398746Z","endTime":"2020-01-13T14:19:12.7061912Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07","name":"a635b905-d5c3-4d0d-abee-7406a1278c07","status":"Succeeded","startTime":"2020-05-27T14:07:41.2660327Z","endTime":"2020-05-27T14:08:01.2880044Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:19:40 GMT + - Wed, 27 May 2020 14:08:13 GMT expires: - '-1' pragma: @@ -840,26 +939,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A19%3A12.6007666Z''\"","location":"westus2stage","properties":{"fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d53e7a2c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","fileSystemId":"8742dbf6-ece3-e297-f818-9bbcd3cdedf1","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A08%3A01.2777157Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1367' + - '1336' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:19:41 GMT + - Wed, 27 May 2020 14:08:14 GMT etag: - - W/"datetime'2020-01-13T14%3A19%3A12.6007666Z'" + - W/"datetime'2020-05-27T14%3A08%3A01.2777157Z'" expires: - '-1' pragma: @@ -893,8 +992,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -906,17 +1005,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:19:42 GMT + - Wed, 27 May 2020 14:08:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -944,24 +1043,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","name":"6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","status":"Deleting","startTime":"2020-01-13T14:19:42.4564767Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Deleting","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:20:14 GMT + - Wed, 27 May 2020 14:08:51 GMT expires: - '-1' pragma: @@ -993,24 +1092,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","name":"6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","status":"Deleting","startTime":"2020-01-13T14:19:42.4564767Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Deleting","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '560' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:20:44 GMT + - Wed, 27 May 2020 14:09:23 GMT expires: - '-1' pragma: @@ -1042,24 +1141,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","name":"6b9170b1-93d3-40d6-9be2-81fa2ee0e75e","status":"Succeeded","startTime":"2020-01-13T14:19:42.4564767Z","endTime":"2020-01-13T14:20:52.7064078Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Succeeded","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"2020-05-27T14:09:26.0586379Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '571' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:21:14 GMT + - Wed, 27 May 2020 14:09:53 GMT expires: - '-1' pragma: @@ -1091,8 +1190,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1109,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:24:35 GMT + - Wed, 27 May 2020 14:13:14 GMT expires: - '-1' pragma: @@ -1135,8 +1234,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1148,17 +1247,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/50aedbe6-298a-4527-959d-bb983e84b0e8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:24:49 GMT + - Wed, 27 May 2020 14:13:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/50aedbe6-298a-4527-959d-bb983e84b0e8?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1186,24 +1285,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/50aedbe6-298a-4527-959d-bb983e84b0e8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/50aedbe6-298a-4527-959d-bb983e84b0e8","name":"50aedbe6-298a-4527-959d-bb983e84b0e8","status":"Succeeded","startTime":"2020-01-13T14:24:48.7799602Z","endTime":"2020-01-13T14:24:49.8268813Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6","name":"d58dff68-6e62-4e88-8552-5ecd17a079a6","status":"Succeeded","startTime":"2020-05-27T14:13:27.9687527Z","endTime":"2020-05-27T14:13:28.4062587Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '550' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:25:20 GMT + - Wed, 27 May 2020 14:13:59 GMT expires: - '-1' pragma: @@ -1237,8 +1336,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1250,7 +1349,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:25:31 GMT + - Wed, 27 May 2020 14:14:10 GMT expires: - '-1' pragma: @@ -1276,8 +1375,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1289,7 +1388,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:25:41 GMT + - Wed, 27 May 2020 14:14:20 GMT expires: - '-1' pragma: @@ -1315,8 +1414,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1328,7 +1427,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:25:51 GMT + - Wed, 27 May 2020 14:14:31 GMT expires: - '-1' pragma: @@ -1354,8 +1453,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1367,7 +1466,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:26:01 GMT + - Wed, 27 May 2020 14:14:41 GMT expires: - '-1' pragma: @@ -1391,8 +1490,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1409,7 +1508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:26:12 GMT + - Wed, 27 May 2020 14:14:54 GMT expires: - '-1' pragma: @@ -1435,8 +1534,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1448,17 +1547,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/174d5499-6b65-4995-a671-60430e66d47d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:26:15 GMT + - Wed, 27 May 2020 14:14:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/174d5499-6b65-4995-a671-60430e66d47d?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1486,24 +1585,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/174d5499-6b65-4995-a671-60430e66d47d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/174d5499-6b65-4995-a671-60430e66d47d","name":"174d5499-6b65-4995-a671-60430e66d47d","status":"Succeeded","startTime":"2020-01-13T14:26:15.3150086Z","endTime":"2020-01-13T14:26:16.4556255Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56","name":"df5a7a58-90ed-456b-a485-53727a862a56","status":"Succeeded","startTime":"2020-05-27T14:14:56.6534349Z","endTime":"2020-05-27T14:14:56.809687Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '516' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:26:47 GMT + - Wed, 27 May 2020 14:15:28 GMT expires: - '-1' pragma: @@ -1535,8 +1634,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1553,7 +1652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:26:50 GMT + - Wed, 27 May 2020 14:15:31 GMT expires: - '-1' pragma: From 3538e6796359b7d9c1915f54cdedf571cd055992 Mon Sep 17 00:00:00 2001 From: Changlong Liu Date: Sat, 30 May 2020 18:50:08 +0800 Subject: [PATCH 3/6] changelog and version --- sdk/netapp/azure-mgmt-netapp/CHANGELOG.md | 6 ++++++ sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md index 652e7e26a201..66573f1b398c 100644 --- a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md +++ b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 0.11.0 (2020-05-31) + +**Breaking changes** + + - Volume parameter mount_targets changes type from MountTarget to MountTargetProperties + ## 0.10.0 (2020-04-21) **Features** diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py index 1f08862acee4..afa3d545c718 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "0.10.0" +VERSION = "0.11.0" From e07949a63bd0c7567d158d05fccdd700c7607c35 Mon Sep 17 00:00:00 2001 From: Changlong Liu Date: Thu, 9 Jul 2020 10:13:41 +0800 Subject: [PATCH 4/6] add recordings (from Audunn) --- ...st_account.test_create_delete_account.yaml | 95 +- ...test_account.test_get_account_by_name.yaml | 91 +- .../test_account.test_list_accounts.yaml | 164 +- .../test_account.test_patch_account.yaml | 87 +- .../test_pool.test_create_delete_pool.yaml | 172 +- .../test_pool.test_get_pool_by_name.yaml | 172 +- .../recordings/test_pool.test_list_pools.yaml | 251 +- .../recordings/test_pool.test_patch_pool.yaml | 230 +- .../test_pool.test_update_pool.yaml | 206 +- ..._snapshot.test_create_delete_snapshot.yaml | 659 +- ...st_snapshot.test_get_snapshot_by_name.yaml | 517 +- .../test_snapshot.test_list_snapshots.yaml | 715 +- ...volume.test_create_delete_list_volume.yaml | 708 +- .../test_volume.test_get_volume_by_name.yaml | 815 +- .../test_volume.test_list_volumes.yaml | 1126 +-- .../test_volume.test_patch_volume.yaml | 708 +- .../test_volume.test_update_volume.yaml | 736 +- .../test_volume.test_volume_replication.yaml | 7608 +++++++++++++++-- 18 files changed, 8786 insertions(+), 6274 deletions(-) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml index 58e38abe704a..ad8e4999b9f5 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6056949Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A58%3A17.4611213Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a06d2a1-17b8-4064-825b-4f8b83da6614?api-version=2019-11-01 cache-control: - no-cache content-length: - - '375' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:11:03 GMT + - Wed, 08 Jul 2020 13:58:19 GMT etag: - - W/"datetime'2020-05-27T05%3A11%3A01.6056949Z'" + - W/"datetime'2020-07-08T13%3A58%3A17.4611213Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a06d2a1-17b8-4064-825b-4f8b83da6614?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8688be66-fdd0-456b-86ff-d7d852bded9a","name":"8688be66-fdd0-456b-86ff-d7d852bded9a","status":"Succeeded","startTime":"2020-05-27T05:11:01.5379371Z","endTime":"2020-05-27T05:11:01.6785786Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a06d2a1-17b8-4064-825b-4f8b83da6614","name":"5a06d2a1-17b8-4064-825b-4f8b83da6614","status":"Succeeded","startTime":"2020-07-08T13:58:16.8674716Z","endTime":"2020-07-08T13:58:18.4664355Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:11:34 GMT + - Wed, 08 Jul 2020 13:58:50 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6817687Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A58%3A18.3679677Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:11:34 GMT + - Wed, 08 Jul 2020 13:58:50 GMT etag: - - W/"datetime'2020-05-27T05%3A11%3A01.6817687Z'" + - W/"datetime'2020-07-08T13%3A58%3A18.3679677Z'" expires: - '-1' pragma: @@ -166,26 +166,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A11%3A01.6817687Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A58%3A18.3679677Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '387' + - '393' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:11:34 GMT + - Wed, 08 Jul 2020 13:58:51 GMT expires: - '-1' pragma: @@ -219,8 +219,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -232,17 +232,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89ec1bed-ac72-4c48-9b53-2c3fcd70a2e2?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:11:35 GMT + - Wed, 08 Jul 2020 13:58:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89ec1bed-ac72-4c48-9b53-2c3fcd70a2e2?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -270,24 +270,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89ec1bed-ac72-4c48-9b53-2c3fcd70a2e2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4d2211a9-9042-4ed6-a32b-eb8e4137bf9c","name":"4d2211a9-9042-4ed6-a32b-eb8e4137bf9c","status":"Succeeded","startTime":"2020-05-27T05:11:36.5143518Z","endTime":"2020-05-27T05:11:36.640476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89ec1bed-ac72-4c48-9b53-2c3fcd70a2e2","name":"89ec1bed-ac72-4c48-9b53-2c3fcd70a2e2","status":"Succeeded","startTime":"2020-07-08T13:58:53.4472765Z","endTime":"2020-07-08T13:58:54.3537276Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:07 GMT + - Wed, 08 Jul 2020 13:59:25 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -328,16 +328,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:07 GMT + - Wed, 08 Jul 2020 13:59:26 GMT expires: - '-1' pragma: @@ -361,8 +362,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -378,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:07 GMT + - Wed, 08 Jul 2020 13:59:26 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml index cfe7fb7ee07a..a3b0069cff98 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6280375Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A59%3A37.3396697Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67995746-36f1-41e4-9037-703a4ba61245?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:17 GMT + - Wed, 08 Jul 2020 13:59:38 GMT etag: - - W/"datetime'2020-05-27T05%3A12%3A16.6280375Z'" + - W/"datetime'2020-07-08T13%3A59%3A37.3396697Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67995746-36f1-41e4-9037-703a4ba61245?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8485b0a6-fd47-4b6f-a230-6851f32dd835","name":"8485b0a6-fd47-4b6f-a230-6851f32dd835","status":"Succeeded","startTime":"2020-05-27T05:12:16.5784717Z","endTime":"2020-05-27T05:12:16.6878431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67995746-36f1-41e4-9037-703a4ba61245","name":"67995746-36f1-41e4-9037-703a4ba61245","status":"Succeeded","startTime":"2020-07-08T13:59:36.7681518Z","endTime":"2020-07-08T13:59:38.1191691Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:49 GMT + - Wed, 08 Jul 2020 14:00:10 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6900974Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A59%3A38.0132986Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:49 GMT + - Wed, 08 Jul 2020 14:00:11 GMT etag: - - W/"datetime'2020-05-27T05%3A12%3A16.6900974Z'" + - W/"datetime'2020-07-08T13%3A59%3A38.0132986Z'" expires: - '-1' pragma: @@ -166,28 +166,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A12%3A16.6900974Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A59%3A38.0132986Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:12:50 GMT + - Wed, 08 Jul 2020 14:00:11 GMT etag: - - W/"datetime'2020-05-27T05%3A12%3A16.6900974Z'" + - W/"datetime'2020-07-08T13%3A59%3A38.0132986Z'" expires: - '-1' pragma: @@ -221,8 +221,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -234,17 +234,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60ee8358-6333-45d3-9520-9dd3a6eafbbd?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:12:51 GMT + - Wed, 08 Jul 2020 14:00:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60ee8358-6333-45d3-9520-9dd3a6eafbbd?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -272,24 +272,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60ee8358-6333-45d3-9520-9dd3a6eafbbd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78","name":"5e4ed6ae-a45b-4e3d-b9e7-9a54c5af1a78","status":"Succeeded","startTime":"2020-05-27T05:12:51.2467521Z","endTime":"2020-05-27T05:12:51.3404976Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60ee8358-6333-45d3-9520-9dd3a6eafbbd","name":"60ee8358-6333-45d3-9520-9dd3a6eafbbd","status":"Succeeded","startTime":"2020-07-08T14:00:14.4543209Z","endTime":"2020-07-08T14:00:15.407436Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:13:23 GMT + - Wed, 08 Jul 2020 14:00:47 GMT expires: - '-1' pragma: @@ -321,8 +321,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -330,16 +330,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:13:23 GMT + - Wed, 08 Jul 2020 14:00:47 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml index fe5015f81eed..bdeec39b78f5 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.473162Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A00%3A58.4613717Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/acfca311-cf55-450c-be5c-e9acbb1d312b?api-version=2019-11-01 cache-control: - no-cache content-length: - - '373' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:13:33 GMT + - Wed, 08 Jul 2020 14:00:59 GMT etag: - - W/"datetime'2020-05-27T05%3A13%3A32.473162Z'" + - W/"datetime'2020-07-08T14%3A00%3A58.4613717Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/acfca311-cf55-450c-be5c-e9acbb1d312b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/814570a6-98bd-47e2-af9b-63918b7067ae","name":"814570a6-98bd-47e2-af9b-63918b7067ae","status":"Succeeded","startTime":"2020-05-27T05:13:32.3246419Z","endTime":"2020-05-27T05:13:32.4808889Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/acfca311-cf55-450c-be5c-e9acbb1d312b","name":"acfca311-cf55-450c-be5c-e9acbb1d312b","status":"Succeeded","startTime":"2020-07-08T14:00:57.9720244Z","endTime":"2020-07-08T14:00:59.362825Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:05 GMT + - Wed, 08 Jul 2020 14:01:31 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.5562403Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A00%3A59.2611193Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:05 GMT + - Wed, 08 Jul 2020 14:01:31 GMT etag: - - W/"datetime'2020-05-27T05%3A13%3A32.5562403Z'" + - W/"datetime'2020-07-08T14%3A00%3A59.2611193Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -166,34 +166,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.6565692Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A01%3A35.9733804Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4095f58a-96e0-4753-a7c3-bb4a0ca5f7dd?api-version=2019-11-01 cache-control: - no-cache content-length: - - '375' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:09 GMT + - Wed, 08 Jul 2020 14:01:36 GMT etag: - - W/"datetime'2020-05-27T05%3A14%3A08.6565692Z'" + - W/"datetime'2020-07-08T14%3A01%3A35.9733804Z'" expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -223,24 +223,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4095f58a-96e0-4753-a7c3-bb4a0ca5f7dd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23591e65-99e2-4f27-9d7c-353be9dc4aa8","name":"23591e65-99e2-4f27-9d7c-353be9dc4aa8","status":"Succeeded","startTime":"2020-05-27T05:14:08.5304514Z","endTime":"2020-05-27T05:14:08.6867107Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4095f58a-96e0-4753-a7c3-bb4a0ca5f7dd","name":"4095f58a-96e0-4753-a7c3-bb4a0ca5f7dd","status":"Succeeded","startTime":"2020-07-08T14:01:35.48572Z","endTime":"2020-07-08T14:01:36.7552245Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '514' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:41 GMT + - Wed, 08 Jul 2020 14:02:08 GMT expires: - '-1' pragma: @@ -272,26 +272,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.7656741Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A01%3A36.6530144Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:42 GMT + - Wed, 08 Jul 2020 14:02:08 GMT etag: - - W/"datetime'2020-05-27T05%3A14%3A08.7656741Z'" + - W/"datetime'2020-07-08T14%3A01%3A36.6530144Z'" expires: - '-1' pragma: @@ -323,26 +323,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A13%3A32.5562403Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A14%3A08.7656741Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A00%3A59.2611193Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A01%3A36.6530144Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '763' + - '775' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:14:41 GMT + - Wed, 08 Jul 2020 14:02:10 GMT expires: - '-1' pragma: @@ -376,8 +376,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -389,17 +389,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/16813112-8a07-41c2-b7b6-28f7f9c48ea5?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:14:42 GMT + - Wed, 08 Jul 2020 14:02:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/16813112-8a07-41c2-b7b6-28f7f9c48ea5?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -427,24 +427,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/16813112-8a07-41c2-b7b6-28f7f9c48ea5?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ef703138-8a19-4bf1-bac5-f38376cf140b","name":"ef703138-8a19-4bf1-bac5-f38376cf140b","status":"Succeeded","startTime":"2020-05-27T05:14:43.3342179Z","endTime":"2020-05-27T05:14:43.4748286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/16813112-8a07-41c2-b7b6-28f7f9c48ea5","name":"16813112-8a07-41c2-b7b6-28f7f9c48ea5","status":"Succeeded","startTime":"2020-07-08T14:02:11.7743704Z","endTime":"2020-07-08T14:02:13.0399978Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:15:15 GMT + - Wed, 08 Jul 2020 14:02:43 GMT expires: - '-1' pragma: @@ -476,8 +476,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -485,16 +485,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:15:15 GMT + - Wed, 08 Jul 2020 14:02:44 GMT expires: - '-1' pragma: @@ -520,8 +521,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -533,17 +534,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e26df7df-dbfd-4ac5-bcc8-89de50ca21e3?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:15:16 GMT + - Wed, 08 Jul 2020 14:02:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e26df7df-dbfd-4ac5-bcc8-89de50ca21e3?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -571,24 +572,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e26df7df-dbfd-4ac5-bcc8-89de50ca21e3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d4f146bf-cb26-4189-943b-10ff1a6a187c","name":"d4f146bf-cb26-4189-943b-10ff1a6a187c","status":"Succeeded","startTime":"2020-05-27T05:15:16.6015132Z","endTime":"2020-05-27T05:15:16.8046609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e26df7df-dbfd-4ac5-bcc8-89de50ca21e3","name":"e26df7df-dbfd-4ac5-bcc8-89de50ca21e3","status":"Succeeded","startTime":"2020-07-08T14:02:45.6911394Z","endTime":"2020-07-08T14:02:46.512238Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:15:48 GMT + - Wed, 08 Jul 2020 14:03:17 GMT expires: - '-1' pragma: @@ -620,8 +621,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -629,16 +630,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:15:48 GMT + - Wed, 08 Jul 2020 14:03:18 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml index 2a4700462b01..8cbe0224d5cf 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A15%3A56.9065088Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A03%3A29.3972361Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de28092a-71f5-4af0-8392-d88e598dae85?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:15:58 GMT + - Wed, 08 Jul 2020 14:03:29 GMT etag: - - W/"datetime'2020-05-27T05%3A15%3A56.9065088Z'" + - W/"datetime'2020-07-08T14%3A03%3A29.3972361Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de28092a-71f5-4af0-8392-d88e598dae85?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/79c4e294-bfd9-4369-aa0f-451c12931795","name":"79c4e294-bfd9-4369-aa0f-451c12931795","status":"Succeeded","startTime":"2020-05-27T05:15:56.8462373Z","endTime":"2020-05-27T05:15:56.986868Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de28092a-71f5-4af0-8392-d88e598dae85","name":"de28092a-71f5-4af0-8392-d88e598dae85","status":"Succeeded","startTime":"2020-07-08T14:03:28.9726818Z","endTime":"2020-07-08T14:03:30.1812507Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:16:28 GMT + - Wed, 08 Jul 2020 14:04:02 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A15%3A56.9795785Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A03%3A30.0748678Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:16:29 GMT + - Wed, 08 Jul 2020 14:04:02 GMT etag: - - W/"datetime'2020-05-27T05%3A15%3A56.9795785Z'" + - W/"datetime'2020-07-08T14%3A03%3A30.0748678Z'" expires: - '-1' pragma: @@ -170,28 +170,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A16%3A31.0990238Z''\"","location":"eastus","tags":{"Tag1":"Value2"},"properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A04%3A05.2567018Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '400' + - '406' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:16:32 GMT + - Wed, 08 Jul 2020 14:04:07 GMT etag: - - W/"datetime'2020-05-27T05%3A16%3A31.0990238Z'" + - W/"datetime'2020-07-08T14%3A04%3A05.2567018Z'" expires: - '-1' pragma: @@ -227,8 +227,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -240,17 +240,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72798406-a9b4-4eb4-9315-eb37bc93e2bf?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:16:33 GMT + - Wed, 08 Jul 2020 14:04:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72798406-a9b4-4eb4-9315-eb37bc93e2bf?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -278,24 +278,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72798406-a9b4-4eb4-9315-eb37bc93e2bf?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/93d70bbb-a59f-4d14-a320-316b906bf23f","name":"93d70bbb-a59f-4d14-a320-316b906bf23f","status":"Succeeded","startTime":"2020-05-27T05:16:33.5769022Z","endTime":"2020-05-27T05:16:33.7331659Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72798406-a9b4-4eb4-9315-eb37bc93e2bf","name":"72798406-a9b4-4eb4-9315-eb37bc93e2bf","status":"Succeeded","startTime":"2020-07-08T14:04:08.9310648Z","endTime":"2020-07-08T14:04:09.8530063Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:17:05 GMT + - Wed, 08 Jul 2020 14:04:41 GMT expires: - '-1' pragma: @@ -327,8 +327,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -336,16 +336,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:17:05 GMT + - Wed, 08 Jul 2020 14:04:41 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml index cd9198a11144..d863f60407bb 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A17%3A39.4933116Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A11%3A08.6439055Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5daa99a1-db7c-492d-8174-02acc4397feb?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:17:40 GMT + - Wed, 08 Jul 2020 14:11:09 GMT etag: - - W/"datetime'2020-05-27T05%3A17%3A39.4933116Z'" + - W/"datetime'2020-07-08T14%3A11%3A08.6439055Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5daa99a1-db7c-492d-8174-02acc4397feb?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd418a4c-edcd-4d1b-a044-a3909f4583c0","name":"fd418a4c-edcd-4d1b-a044-a3909f4583c0","status":"Succeeded","startTime":"2020-05-27T05:17:39.1421607Z","endTime":"2020-05-27T05:17:39.5640492Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5daa99a1-db7c-492d-8174-02acc4397feb","name":"5daa99a1-db7c-492d-8174-02acc4397feb","status":"Succeeded","startTime":"2020-07-08T14:11:08.117413Z","endTime":"2020-07-08T14:11:09.4143843Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:12 GMT + - Wed, 08 Jul 2020 14:11:41 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A17%3A39.5703865Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A11%3A09.3155326Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:13 GMT + - Wed, 08 Jul 2020 14:11:41 GMT etag: - - W/"datetime'2020-05-27T05%3A17%3A39.5703865Z'" + - W/"datetime'2020-07-08T14%3A11%3A09.3155326Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.1633617Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A11%3A51.7451328Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/403d16df-b925-4e27-b338-d96ce0ba53c8?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:16 GMT + - Wed, 08 Jul 2020 14:11:52 GMT etag: - - W/"datetime'2020-05-27T05%3A18%3A16.1633617Z'" + - W/"datetime'2020-07-08T14%3A11%3A51.7451328Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/403d16df-b925-4e27-b338-d96ce0ba53c8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0f537d54-b063-4836-a515-5b47f2faea33","name":"0f537d54-b063-4836-a515-5b47f2faea33","status":"Succeeded","startTime":"2020-05-27T05:18:16.092127Z","endTime":"2020-05-27T05:18:16.3890189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/403d16df-b925-4e27-b338-d96ce0ba53c8","name":"403d16df-b925-4e27-b338-d96ce0ba53c8","status":"Succeeded","startTime":"2020-07-08T14:11:51.1734722Z","endTime":"2020-07-08T14:11:52.9081208Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '543' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:49 GMT + - Wed, 08 Jul 2020 14:12:24 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.3805694Z''\"","location":"eastus","properties":{"poolId":"8fc6645a-ad46-4a23-3016-700f443db42d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A11%3A52.8081239Z''\"","location":"westus2stage","properties":{"poolId":"bbaacdf6-1166-c1b9-ee06-c0fce33a69ad","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:50 GMT + - Wed, 08 Jul 2020 14:12:24 GMT etag: - - W/"datetime'2020-05-27T05%3A18%3A16.3805694Z'" + - W/"datetime'2020-07-08T14%3A11%3A52.8081239Z'" expires: - '-1' pragma: @@ -326,26 +326,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A18%3A16.3805694Z''\"","location":"eastus","properties":{"poolId":"8fc6645a-ad46-4a23-3016-700f443db42d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A11%3A52.8081239Z''\"","location":"westus2stage","properties":{"poolId":"bbaacdf6-1166-c1b9-ee06-c0fce33a69ad","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '569' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:18:50 GMT + - Wed, 08 Jul 2020 14:12:26 GMT expires: - '-1' pragma: @@ -379,8 +379,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -392,17 +392,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/588d63df-0a2c-495f-98b0-8c9738d4e00c?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:18:51 GMT + - Wed, 08 Jul 2020 14:12:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/588d63df-0a2c-495f-98b0-8c9738d4e00c?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -430,24 +430,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/588d63df-0a2c-495f-98b0-8c9738d4e00c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0a3c7364-e05f-4b89-9727-5fd39d808ba0","name":"0a3c7364-e05f-4b89-9727-5fd39d808ba0","status":"Succeeded","startTime":"2020-05-27T05:18:51.6174126Z","endTime":"2020-05-27T05:18:52.0080548Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/588d63df-0a2c-495f-98b0-8c9738d4e00c","name":"588d63df-0a2c-495f-98b0-8c9738d4e00c","status":"Succeeded","startTime":"2020-07-08T14:12:28.1889409Z","endTime":"2020-07-08T14:12:29.0483936Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:19:23 GMT + - Wed, 08 Jul 2020 14:13:00 GMT expires: - '-1' pragma: @@ -479,8 +479,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:19:23 GMT + - Wed, 08 Jul 2020 14:13:01 GMT expires: - '-1' pragma: @@ -530,8 +530,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -539,16 +539,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:19:34 GMT + - Wed, 08 Jul 2020 14:13:11 GMT expires: - '-1' pragma: @@ -574,8 +575,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -587,17 +588,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7232898-df64-483c-95c8-5ffbfbcc2612?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:19:35 GMT + - Wed, 08 Jul 2020 14:13:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7232898-df64-483c-95c8-5ffbfbcc2612?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -625,24 +626,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7232898-df64-483c-95c8-5ffbfbcc2612?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbf09bed-8b6c-4b5f-9e29-c082ee9242f1","name":"fbf09bed-8b6c-4b5f-9e29-c082ee9242f1","status":"Succeeded","startTime":"2020-05-27T05:19:35.571438Z","endTime":"2020-05-27T05:19:35.7120665Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7232898-df64-483c-95c8-5ffbfbcc2612","name":"f7232898-df64-483c-95c8-5ffbfbcc2612","status":"Succeeded","startTime":"2020-07-08T14:13:13.3776994Z","endTime":"2020-07-08T14:13:14.2684065Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:20:06 GMT + - Wed, 08 Jul 2020 14:13:45 GMT expires: - '-1' pragma: @@ -674,8 +675,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -683,16 +684,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:20:08 GMT + - Wed, 08 Jul 2020 14:13:47 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml index d8ad00e7ec9d..fff283067215 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A20%3A16.4733588Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A13%3A58.5935149Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cc004c4-8f4d-4693-9686-49c832a7c466?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:20:18 GMT + - Wed, 08 Jul 2020 14:13:59 GMT etag: - - W/"datetime'2020-05-27T05%3A20%3A16.4733588Z'" + - W/"datetime'2020-07-08T14%3A13%3A58.5935149Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cc004c4-8f4d-4693-9686-49c832a7c466?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d8c1092e-3e6f-4a88-964a-3b6054b0b5b1","name":"d8c1092e-3e6f-4a88-964a-3b6054b0b5b1","status":"Succeeded","startTime":"2020-05-27T05:20:16.4153485Z","endTime":"2020-05-27T05:20:16.5403506Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7cc004c4-8f4d-4693-9686-49c832a7c466","name":"7cc004c4-8f4d-4693-9686-49c832a7c466","status":"Succeeded","startTime":"2020-07-08T14:13:58.1585764Z","endTime":"2020-07-08T14:13:59.3663646Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:20:49 GMT + - Wed, 08 Jul 2020 14:14:31 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A20%3A16.5404228Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A13%3A59.2611377Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:20:50 GMT + - Wed, 08 Jul 2020 14:14:31 GMT etag: - - W/"datetime'2020-05-27T05%3A20%3A16.5404228Z'" + - W/"datetime'2020-07-08T14%3A13%3A59.2611377Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A06.6853505Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A14%3A40.1282781Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6a5f88a1-7773-4b57-b7b5-d170791dce2c?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:21:07 GMT + - Wed, 08 Jul 2020 14:14:40 GMT etag: - - W/"datetime'2020-05-27T05%3A21%3A06.6853505Z'" + - W/"datetime'2020-07-08T14%3A14%3A40.1282781Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6a5f88a1-7773-4b57-b7b5-d170791dce2c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/be50b2a7-d03c-4c49-9935-f0ecbf50e770","name":"be50b2a7-d03c-4c49-9935-f0ecbf50e770","status":"Succeeded","startTime":"2020-05-27T05:21:06.6487195Z","endTime":"2020-05-27T05:21:07.0233936Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6a5f88a1-7773-4b57-b7b5-d170791dce2c","name":"6a5f88a1-7773-4b57-b7b5-d170791dce2c","status":"Succeeded","startTime":"2020-07-08T14:14:39.7074207Z","endTime":"2020-07-08T14:14:41.2263477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:21:39 GMT + - Wed, 08 Jul 2020 14:15:13 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A07.002653Z''\"","location":"eastus","properties":{"poolId":"15c88f16-4e19-0160-3425-9dfe9404c71e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A14%3A41.0921783Z''\"","location":"westus2stage","properties":{"poolId":"92d1ee55-70fb-05dc-d04e-134a652d91c9","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '556' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:21:39 GMT + - Wed, 08 Jul 2020 14:15:13 GMT etag: - - W/"datetime'2020-05-27T05%3A21%3A07.002653Z'" + - W/"datetime'2020-07-08T14%3A14%3A41.0921783Z'" expires: - '-1' pragma: @@ -326,28 +326,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A21%3A07.002653Z''\"","location":"eastus","properties":{"poolId":"15c88f16-4e19-0160-3425-9dfe9404c71e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A14%3A41.0921783Z''\"","location":"westus2stage","properties":{"poolId":"92d1ee55-70fb-05dc-d04e-134a652d91c9","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '556' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:21:40 GMT + - Wed, 08 Jul 2020 14:15:14 GMT etag: - - W/"datetime'2020-05-27T05%3A21%3A07.002653Z'" + - W/"datetime'2020-07-08T14%3A14%3A41.0921783Z'" expires: - '-1' pragma: @@ -381,8 +381,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -394,17 +394,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/46124702-da93-4bf8-a5d5-7bce58c2d92e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:21:42 GMT + - Wed, 08 Jul 2020 14:15:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/46124702-da93-4bf8-a5d5-7bce58c2d92e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -416,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14981' + - '14999' x-powered-by: - ASP.NET status: @@ -432,24 +432,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/46124702-da93-4bf8-a5d5-7bce58c2d92e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/20505aed-85bd-452e-8248-4769506c0adb","name":"20505aed-85bd-452e-8248-4769506c0adb","status":"Succeeded","startTime":"2020-05-27T05:21:41.8969456Z","endTime":"2020-05-27T05:21:42.5063248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/46124702-da93-4bf8-a5d5-7bce58c2d92e","name":"46124702-da93-4bf8-a5d5-7bce58c2d92e","status":"Succeeded","startTime":"2020-07-08T14:15:16.4814111Z","endTime":"2020-07-08T14:15:17.2939696Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:22:12 GMT + - Wed, 08 Jul 2020 14:15:48 GMT expires: - '-1' pragma: @@ -481,8 +481,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -490,16 +490,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:22:22 GMT + - Wed, 08 Jul 2020 14:15:59 GMT expires: - '-1' pragma: @@ -525,8 +526,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -538,17 +539,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/babe2eb2-2969-49d1-a353-f998a809e0f9?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:22:23 GMT + - Wed, 08 Jul 2020 14:16:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/babe2eb2-2969-49d1-a353-f998a809e0f9?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -560,7 +561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14980' + - '14998' x-powered-by: - ASP.NET status: @@ -576,24 +577,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/babe2eb2-2969-49d1-a353-f998a809e0f9?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e724a3a0-8047-443d-a122-5c8d182a81b7","name":"e724a3a0-8047-443d-a122-5c8d182a81b7","status":"Succeeded","startTime":"2020-05-27T05:22:23.9731779Z","endTime":"2020-05-27T05:22:24.1137847Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/babe2eb2-2969-49d1-a353-f998a809e0f9","name":"babe2eb2-2969-49d1-a353-f998a809e0f9","status":"Succeeded","startTime":"2020-07-08T14:16:01.0801254Z","endTime":"2020-07-08T14:16:01.9864392Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:22:55 GMT + - Wed, 08 Jul 2020 14:16:33 GMT expires: - '-1' pragma: @@ -625,8 +626,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -634,16 +635,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:22:58 GMT + - Wed, 08 Jul 2020 14:16:35 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml index 5b5547c3f64e..c6cc3ff91f7f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A23%3A04.7021565Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A16%3A45.819584Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494efb48-310b-4cec-a87f-37d721264113?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:23:05 GMT + - Wed, 08 Jul 2020 14:16:47 GMT etag: - - W/"datetime'2020-05-27T05%3A23%3A04.7021565Z'" + - W/"datetime'2020-07-08T14%3A16%3A45.819584Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494efb48-310b-4cec-a87f-37d721264113?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/813932c0-b647-4762-804e-4add8446a8bb","name":"813932c0-b647-4762-804e-4add8446a8bb","status":"Succeeded","startTime":"2020-05-27T05:23:04.6387837Z","endTime":"2020-05-27T05:23:04.7637825Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/494efb48-310b-4cec-a87f-37d721264113","name":"494efb48-310b-4cec-a87f-37d721264113","status":"Succeeded","startTime":"2020-07-08T14:16:45.376632Z","endTime":"2020-07-08T14:16:46.5954587Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:23:37 GMT + - Wed, 08 Jul 2020 14:17:19 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A23%3A04.7662183Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A16%3A46.4942118Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:23:38 GMT + - Wed, 08 Jul 2020 14:17:19 GMT etag: - - W/"datetime'2020-05-27T05%3A23%3A04.7662183Z'" + - W/"datetime'2020-07-08T14%3A16%3A46.4942118Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.2531362Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A17%3A27.7286952Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4c9611a9-3f15-4b76-95cc-f4d0bce31311?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:23:41 GMT + - Wed, 08 Jul 2020 14:17:28 GMT etag: - - W/"datetime'2020-05-27T05%3A23%3A40.2531362Z'" + - W/"datetime'2020-07-08T14%3A17%3A27.7286952Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4c9611a9-3f15-4b76-95cc-f4d0bce31311?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8f9d7a0-3dfd-439a-9582-72ba98040095","name":"c8f9d7a0-3dfd-439a-9582-72ba98040095","status":"Succeeded","startTime":"2020-05-27T05:23:40.1629705Z","endTime":"2020-05-27T05:23:40.5848713Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4c9611a9-3f15-4b76-95cc-f4d0bce31311","name":"4c9611a9-3f15-4b76-95cc-f4d0bce31311","status":"Succeeded","startTime":"2020-07-08T14:17:27.2828594Z","endTime":"2020-07-08T14:17:28.6748577Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:24:12 GMT + - Wed, 08 Jul 2020 14:18:00 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.5794489Z''\"","location":"eastus","properties":{"poolId":"c1beaabe-679b-3bf6-5a43-e789d46bac0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A17%3A28.5704806Z''\"","location":"westus2stage","properties":{"poolId":"91c80a8c-adb6-1c8e-2b29-21f5d4133a3e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:24:33 GMT + - Wed, 08 Jul 2020 14:18:01 GMT etag: - - W/"datetime'2020-05-27T05%3A23%3A40.5794489Z'" + - W/"datetime'2020-07-08T14%3A17%3A28.5704806Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -327,36 +327,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.117402Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A18%3A20.9954073Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dfc30ec7-cb43-4b1e-912f-629535e9cc74?api-version=2019-11-01 cache-control: - no-cache content-length: - - '459' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:24:40 GMT + - Wed, 08 Jul 2020 14:18:21 GMT etag: - - W/"datetime'2020-05-27T05%3A24%3A39.117402Z'" + - W/"datetime'2020-07-08T14%3A18%3A20.9954073Z'" expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +386,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dfc30ec7-cb43-4b1e-912f-629535e9cc74?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd518a58-0760-4f01-82a1-cb3d9be4186d","name":"cd518a58-0760-4f01-82a1-cb3d9be4186d","status":"Succeeded","startTime":"2020-05-27T05:24:39.0640965Z","endTime":"2020-05-27T05:24:39.4390991Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dfc30ec7-cb43-4b1e-912f-629535e9cc74","name":"dfc30ec7-cb43-4b1e-912f-629535e9cc74","status":"Succeeded","startTime":"2020-07-08T14:18:20.4037054Z","endTime":"2020-07-08T14:18:22.2162779Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:25:12 GMT + - Wed, 08 Jul 2020 14:18:54 GMT expires: - '-1' pragma: @@ -435,26 +435,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.4367068Z''\"","location":"eastus","properties":{"poolId":"8c553839-bc1b-736b-4270-0bbde73c4a88","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A18%3A22.1024409Z''\"","location":"westus2stage","properties":{"poolId":"6ebc6ccc-9688-d844-a6b4-f515da67bf57","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:25:13 GMT + - Wed, 08 Jul 2020 14:18:55 GMT etag: - - W/"datetime'2020-05-27T05%3A24%3A39.4367068Z'" + - W/"datetime'2020-07-08T14%3A18%3A22.1024409Z'" expires: - '-1' pragma: @@ -486,26 +486,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A23%3A40.5794489Z''\"","location":"eastus","properties":{"poolId":"c1beaabe-679b-3bf6-5a43-e789d46bac0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A24%3A39.4367068Z''\"","location":"eastus","properties":{"poolId":"8c553839-bc1b-736b-4270-0bbde73c4a88","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A17%3A28.5704806Z''\"","location":"westus2stage","properties":{"poolId":"91c80a8c-adb6-1c8e-2b29-21f5d4133a3e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A18%3A22.1024409Z''\"","location":"westus2stage","properties":{"poolId":"6ebc6ccc-9688-d844-a6b4-f515da67bf57","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1127' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:25:13 GMT + - Wed, 08 Jul 2020 14:18:55 GMT expires: - '-1' pragma: @@ -539,8 +539,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -552,17 +552,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cb8729d2-aeb9-4094-826a-92dbdbd5cbf8?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:25:14 GMT + - Wed, 08 Jul 2020 14:18:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cb8729d2-aeb9-4094-826a-92dbdbd5cbf8?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -574,7 +574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14979' + - '14999' x-powered-by: - ASP.NET status: @@ -590,24 +590,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cb8729d2-aeb9-4094-826a-92dbdbd5cbf8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/18796348-fae4-4fde-8ace-33951a2ecd65","name":"18796348-fae4-4fde-8ace-33951a2ecd65","status":"Succeeded","startTime":"2020-05-27T05:25:14.8879311Z","endTime":"2020-05-27T05:25:15.3098059Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cb8729d2-aeb9-4094-826a-92dbdbd5cbf8","name":"cb8729d2-aeb9-4094-826a-92dbdbd5cbf8","status":"Succeeded","startTime":"2020-07-08T14:18:57.7127897Z","endTime":"2020-07-08T14:18:58.4985824Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:25:46 GMT + - Wed, 08 Jul 2020 14:19:30 GMT expires: - '-1' pragma: @@ -641,8 +641,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -654,17 +654,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6321295f-d8fd-4e3f-8bd1-e235d201d19d?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:25:48 GMT + - Wed, 08 Jul 2020 14:19:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6321295f-d8fd-4e3f-8bd1-e235d201d19d?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -676,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14978' + - '14998' x-powered-by: - ASP.NET status: @@ -692,24 +692,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6321295f-d8fd-4e3f-8bd1-e235d201d19d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/56ee995b-b0b4-4ced-8a41-f9295eca8ef3","name":"56ee995b-b0b4-4ced-8a41-f9295eca8ef3","status":"Succeeded","startTime":"2020-05-27T05:25:47.8001033Z","endTime":"2020-05-27T05:25:48.3313449Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6321295f-d8fd-4e3f-8bd1-e235d201d19d","name":"6321295f-d8fd-4e3f-8bd1-e235d201d19d","status":"Succeeded","startTime":"2020-07-08T14:19:32.8201443Z","endTime":"2020-07-08T14:19:33.8827175Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:26:19 GMT + - Wed, 08 Jul 2020 14:20:05 GMT expires: - '-1' pragma: @@ -741,8 +741,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -750,16 +750,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:26:29 GMT + - Wed, 08 Jul 2020 14:20:15 GMT expires: - '-1' pragma: @@ -783,8 +784,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -792,16 +793,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:26:39 GMT + - Wed, 08 Jul 2020 14:20:26 GMT expires: - '-1' pragma: @@ -827,8 +829,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -840,17 +842,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e69f913-2b21-481e-a604-cbfbdf20ffd0?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:26:41 GMT + - Wed, 08 Jul 2020 14:20:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e69f913-2b21-481e-a604-cbfbdf20ffd0?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -862,7 +864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14977' + - '14997' x-powered-by: - ASP.NET status: @@ -878,24 +880,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e69f913-2b21-481e-a604-cbfbdf20ffd0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8403bfcc-b264-455e-bd95-34953c29ea4e","name":"8403bfcc-b264-455e-bd95-34953c29ea4e","status":"Succeeded","startTime":"2020-05-27T05:26:42.2870243Z","endTime":"2020-05-27T05:26:42.4432602Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e69f913-2b21-481e-a604-cbfbdf20ffd0","name":"3e69f913-2b21-481e-a604-cbfbdf20ffd0","status":"Succeeded","startTime":"2020-07-08T14:20:29.2096929Z","endTime":"2020-07-08T14:20:30.3559858Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:27:13 GMT + - Wed, 08 Jul 2020 14:21:01 GMT expires: - '-1' pragma: @@ -927,8 +929,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -936,16 +938,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:27:16 GMT + - Wed, 08 Jul 2020 14:21:03 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml index 8cced6d4c42e..57e976656338 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A27%3A24.2232174Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A21%3A14.4733097Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b30f1dcb-86c5-44b0-9153-f2cc2b99ed03?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:27:26 GMT + - Wed, 08 Jul 2020 14:21:14 GMT etag: - - W/"datetime'2020-05-27T05%3A27%3A24.2232174Z'" + - W/"datetime'2020-07-08T14%3A21%3A14.4733097Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b30f1dcb-86c5-44b0-9153-f2cc2b99ed03?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8","name":"5f4fde7a-0a9d-49d9-996d-bd6f935b4bd8","status":"Succeeded","startTime":"2020-05-27T05:27:24.1388498Z","endTime":"2020-05-27T05:27:24.3107322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b30f1dcb-86c5-44b0-9153-f2cc2b99ed03","name":"b30f1dcb-86c5-44b0-9153-f2cc2b99ed03","status":"Succeeded","startTime":"2020-07-08T14:21:14.0556227Z","endTime":"2020-07-08T14:21:15.2900705Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:27:58 GMT + - Wed, 08 Jul 2020 14:21:47 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A27%3A24.3062971Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A21%3A15.1889769Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:27:59 GMT + - Wed, 08 Jul 2020 14:21:47 GMT etag: - - W/"datetime'2020-05-27T05%3A27%3A24.3062971Z'" + - W/"datetime'2020-07-08T14%3A21%3A15.1889769Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A01.156491Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A21%3A57.3753485Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9c26ca55-57fe-4a7e-ba73-2bbd15a4eca9?api-version=2019-11-01 cache-control: - no-cache content-length: - - '459' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:28:01 GMT + - Wed, 08 Jul 2020 14:21:58 GMT etag: - - W/"datetime'2020-05-27T05%3A28%3A01.156491Z'" + - W/"datetime'2020-07-08T14%3A21%3A57.3753485Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9c26ca55-57fe-4a7e-ba73-2bbd15a4eca9?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f436a0d5-b4e3-4630-b5bc-a721de2e3944","name":"f436a0d5-b4e3-4630-b5bc-a721de2e3944","status":"Succeeded","startTime":"2020-05-27T05:28:01.0803506Z","endTime":"2020-05-27T05:28:01.4553627Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9c26ca55-57fe-4a7e-ba73-2bbd15a4eca9","name":"9c26ca55-57fe-4a7e-ba73-2bbd15a4eca9","status":"Succeeded","startTime":"2020-07-08T14:21:56.8657565Z","endTime":"2020-07-08T14:21:58.6001501Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:28:33 GMT + - Wed, 08 Jul 2020 14:22:30 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A01.4607799Z''\"","location":"eastus","properties":{"poolId":"259f09ca-4bc3-c323-b272-e70e5ffc464a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A21%3A58.4713716Z''\"","location":"westus2stage","properties":{"poolId":"45aebbe9-b076-121f-f630-550f999863ed","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:28:33 GMT + - Wed, 08 Jul 2020 14:22:31 GMT etag: - - W/"datetime'2020-05-27T05%3A28%3A01.4607799Z'" + - W/"datetime'2020-07-08T14%3A21%3A58.4713716Z'" expires: - '-1' pragma: @@ -331,28 +331,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A28%3A36.2788896Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"259f09ca-4bc3-c323-b272-e70e5ffc464a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A22%3A33.7112593Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"45aebbe9-b076-121f-f630-550f999863ed","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '583' + - '589' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:28:58 GMT + - Wed, 08 Jul 2020 14:22:35 GMT etag: - - W/"datetime'2020-05-27T05%3A28%3A36.2788896Z'" + - W/"datetime'2020-07-08T14%3A22%3A33.7112593Z'" expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' x-powered-by: - ASP.NET status: @@ -388,64 +388,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 - response: - body: - string: '{"error":{"code":"InternalServerError","message":"Encountered internal - server error. Please try again."}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - connection: - - close - content-length: - - '105' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 05:29:36 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - service - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-powered-by: - - ASP.NET - status: - code: 500 - message: Internal Server Error -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -457,17 +401,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dd37f09-6540-4146-82de-f1f2fdc5c25f?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:29:39 GMT + - Wed, 08 Jul 2020 14:22:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dd37f09-6540-4146-82de-f1f2fdc5c25f?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -479,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-powered-by: - ASP.NET status: @@ -495,24 +439,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dd37f09-6540-4146-82de-f1f2fdc5c25f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/30fa7803-591e-4f81-9e6f-3b4a4460ae3d","name":"30fa7803-591e-4f81-9e6f-3b4a4460ae3d","status":"Succeeded","startTime":"2020-05-27T05:29:39.8198683Z","endTime":"2020-05-27T05:29:40.3355106Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dd37f09-6540-4146-82de-f1f2fdc5c25f","name":"5dd37f09-6540-4146-82de-f1f2fdc5c25f","status":"Succeeded","startTime":"2020-07-08T14:22:38.0495916Z","endTime":"2020-07-08T14:22:38.9403541Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:30:10 GMT + - Wed, 08 Jul 2020 14:23:09 GMT expires: - '-1' pragma: @@ -544,8 +488,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -553,16 +497,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:30:20 GMT + - Wed, 08 Jul 2020 14:23:20 GMT expires: - '-1' pragma: @@ -588,8 +533,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -601,17 +546,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a4a51a4-df3e-446b-9a65-4a730bccb416?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:30:21 GMT + - Wed, 08 Jul 2020 14:23:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a4a51a4-df3e-446b-9a65-4a730bccb416?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -623,7 +568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' x-powered-by: - ASP.NET status: @@ -639,24 +584,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a4a51a4-df3e-446b-9a65-4a730bccb416?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6567b700-b0fa-4760-b78b-b2457e344fee","name":"6567b700-b0fa-4760-b78b-b2457e344fee","status":"Succeeded","startTime":"2020-05-27T05:30:21.9210079Z","endTime":"2020-05-27T05:30:22.0460025Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a4a51a4-df3e-446b-9a65-4a730bccb416","name":"7a4a51a4-df3e-446b-9a65-4a730bccb416","status":"Succeeded","startTime":"2020-07-08T14:23:22.6949126Z","endTime":"2020-07-08T14:23:23.5698973Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:30:53 GMT + - Wed, 08 Jul 2020 14:23:54 GMT expires: - '-1' pragma: @@ -688,8 +633,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -697,16 +642,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:30:56 GMT + - Wed, 08 Jul 2020 14:23:57 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml index 7a1352508211..ee42ac54cce1 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A31%3A03.8211942Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A24%3A07.0013249Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0235cd65-3eb9-4a49-b95b-aca85b65f98a?api-version=2019-11-01 cache-control: - no-cache content-length: - - '375' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:31:05 GMT + - Wed, 08 Jul 2020 14:24:08 GMT etag: - - W/"datetime'2020-05-27T05%3A31%3A03.8211942Z'" + - W/"datetime'2020-07-08T14%3A24%3A07.0013249Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0235cd65-3eb9-4a49-b95b-aca85b65f98a?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a4e02ba9-a371-45f0-a75c-2a4e6a178ae6","name":"a4e02ba9-a371-45f0-a75c-2a4e6a178ae6","status":"Succeeded","startTime":"2020-05-27T05:31:03.7392505Z","endTime":"2020-05-27T05:31:03.8956733Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0235cd65-3eb9-4a49-b95b-aca85b65f98a","name":"0235cd65-3eb9-4a49-b95b-aca85b65f98a","status":"Succeeded","startTime":"2020-07-08T14:24:06.5399129Z","endTime":"2020-07-08T14:24:07.8254031Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:31:37 GMT + - Wed, 08 Jul 2020 14:24:40 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T05%3A31%3A03.887258Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T14%3A24%3A07.7219975Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '374' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:31:37 GMT + - Wed, 08 Jul 2020 14:24:40 GMT etag: - - W/"datetime'2020-05-27T05%3A31%3A03.887258Z'" + - W/"datetime'2020-07-08T14%3A24%3A07.7219975Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A31%3A40.6311977Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A24%3A49.4279202Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55f3a300-dad7-4a1d-99b8-1a25b642680f?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:31:41 GMT + - Wed, 08 Jul 2020 14:24:49 GMT etag: - - W/"datetime'2020-05-27T05%3A31%3A40.6311977Z'" + - W/"datetime'2020-07-08T14%3A24%3A49.4279202Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55f3a300-dad7-4a1d-99b8-1a25b642680f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fe98cf77-31b2-4774-ac4e-42e719ceb21b","name":"fe98cf77-31b2-4774-ac4e-42e719ceb21b","status":"Succeeded","startTime":"2020-05-27T05:31:40.5397485Z","endTime":"2020-05-27T05:31:40.9460162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55f3a300-dad7-4a1d-99b8-1a25b642680f","name":"55f3a300-dad7-4a1d-99b8-1a25b642680f","status":"Succeeded","startTime":"2020-07-08T14:24:48.7359057Z","endTime":"2020-07-08T14:24:50.5351732Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:32:11 GMT + - Wed, 08 Jul 2020 14:25:43 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A31%3A40.940493Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A24%3A50.4248511Z''\"","location":"westus2stage","properties":{"poolId":"e4b5ebf5-1ccc-cbda-83d4-035c02dfed2f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '556' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:32:12 GMT + - Wed, 08 Jul 2020 14:25:45 GMT etag: - - W/"datetime'2020-05-27T05%3A31%3A40.940493Z'" + - W/"datetime'2020-07-08T14%3A24%3A50.4248511Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Standard"}}' headers: Accept: @@ -327,36 +327,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A32%3A13.5795294Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Updating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A25%3A48.3939513Z''\"","location":"westus2stage","properties":{"provisioningState":"Updating","poolId":"e4b5ebf5-1ccc-cbda-83d4-035c02dfed2f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/edd51c8f-f84a-441d-8d5e-dce3f1ff3204?api-version=2019-11-01 cache-control: - no-cache content-length: - - '557' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:32:13 GMT + - Wed, 08 Jul 2020 14:25:48 GMT etag: - - W/"datetime'2020-05-27T05%3A32%3A13.5795294Z'" + - W/"datetime'2020-07-08T14%3A25%3A48.3939513Z'" expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -390,24 +390,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/edd51c8f-f84a-441d-8d5e-dce3f1ff3204?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f15e4b56-b5d1-4a63-9136-8a17599015d1","name":"f15e4b56-b5d1-4a63-9136-8a17599015d1","status":"Succeeded","startTime":"2020-05-27T05:32:13.5334843Z","endTime":"2020-05-27T05:32:13.9713483Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/edd51c8f-f84a-441d-8d5e-dce3f1ff3204","name":"edd51c8f-f84a-441d-8d5e-dce3f1ff3204","status":"Succeeded","startTime":"2020-07-08T14:25:47.887Z","endTime":"2020-07-08T14:25:49.3870887Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '546' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:32:45 GMT + - Wed, 08 Jul 2020 14:26:20 GMT expires: - '-1' pragma: @@ -439,26 +439,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T05%3A32%3A13.9729051Z''\"","location":"eastus","properties":{"poolId":"9cff87cd-2cf1-f200-044b-896fead80e3f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T14%3A25%3A49.275774Z''\"","location":"westus2stage","properties":{"poolId":"e4b5ebf5-1ccc-cbda-83d4-035c02dfed2f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '558' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:32:46 GMT + - Wed, 08 Jul 2020 14:26:21 GMT etag: - - W/"datetime'2020-05-27T05%3A32%3A13.9729051Z'" + - W/"datetime'2020-07-08T14%3A25%3A49.275774Z'" expires: - '-1' pragma: @@ -492,8 +492,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -505,17 +505,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a2a0727-cf69-44d9-9d8d-a255bc4df8f4?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:33:06 GMT + - Wed, 08 Jul 2020 14:26:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a2a0727-cf69-44d9-9d8d-a255bc4df8f4?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -527,7 +527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -543,24 +543,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a2a0727-cf69-44d9-9d8d-a255bc4df8f4?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cd3d950c-4c91-4f09-a15c-8ed3fa1a5640","name":"cd3d950c-4c91-4f09-a15c-8ed3fa1a5640","status":"Succeeded","startTime":"2020-05-27T05:33:06.5745468Z","endTime":"2020-05-27T05:33:07.0120658Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a2a0727-cf69-44d9-9d8d-a255bc4df8f4","name":"4a2a0727-cf69-44d9-9d8d-a255bc4df8f4","status":"Succeeded","startTime":"2020-07-08T14:26:23.0720245Z","endTime":"2020-07-08T14:26:24.1659878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:33:37 GMT + - Wed, 08 Jul 2020 14:26:55 GMT expires: - '-1' pragma: @@ -592,8 +592,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -601,16 +601,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:33:48 GMT + - Wed, 08 Jul 2020 14:27:05 GMT expires: - '-1' pragma: @@ -636,8 +637,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -649,17 +650,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79ee4e3a-dead-443d-9af1-b59814a11c5e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 05:33:49 GMT + - Wed, 08 Jul 2020 14:27:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79ee4e3a-dead-443d-9af1-b59814a11c5e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -671,7 +672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' x-powered-by: - ASP.NET status: @@ -687,24 +688,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79ee4e3a-dead-443d-9af1-b59814a11c5e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c65006c-b990-4fe0-a8c0-bbcaa9043c1d","name":"5c65006c-b990-4fe0-a8c0-bbcaa9043c1d","status":"Succeeded","startTime":"2020-05-27T05:33:49.709604Z","endTime":"2020-05-27T05:33:49.9598477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79ee4e3a-dead-443d-9af1-b59814a11c5e","name":"79ee4e3a-dead-443d-9af1-b59814a11c5e","status":"Succeeded","startTime":"2020-07-08T14:27:07.9713467Z","endTime":"2020-07-08T14:27:08.8000958Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:34:20 GMT + - Wed, 08 Jul 2020 14:27:39 GMT expires: - '-1' pragma: @@ -736,8 +737,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -745,16 +746,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 05:34:22 GMT + - Wed, 08 Jul 2020 14:27:41 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml index 0637836a9daf..1e0ac31a1b6f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A48%3A08.2705275Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T16%3A47%3A15.821047Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c5e81591-5864-49ba-93a7-ca8e46b3efcb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6e93ada8-c6d1-4385-9021-5222c8482988?api-version=2019-11-01 cache-control: - no-cache content-length: - - '381' + - '379' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:48:08 GMT + - Wed, 08 Jul 2020 16:47:16 GMT etag: - - W/"datetime'2020-01-13T14%3A48%3A08.2705275Z'" + - W/"datetime'2020-07-08T16%3A47%3A15.821047Z'" expires: - '-1' pragma: @@ -66,13 +66,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c5e81591-5864-49ba-93a7-ca8e46b3efcb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6e93ada8-c6d1-4385-9021-5222c8482988?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c5e81591-5864-49ba-93a7-ca8e46b3efcb","name":"c5e81591-5864-49ba-93a7-ca8e46b3efcb","status":"Succeeded","startTime":"2020-01-13T14:48:07.8027115Z","endTime":"2020-01-13T14:48:09.1152971Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6e93ada8-c6d1-4385-9021-5222c8482988","name":"6e93ada8-c6d1-4385-9021-5222c8482988","status":"Succeeded","startTime":"2020-07-08T16:47:15.2742665Z","endTime":"2020-07-08T16:47:16.6029298Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:48:40 GMT + - Wed, 08 Jul 2020 16:47:50 GMT expires: - '-1' pragma: @@ -115,13 +115,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A48%3A09.0002226Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T16%3A47%3A16.5046853Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:48:40 GMT + - Wed, 08 Jul 2020 16:47:51 GMT etag: - - W/"datetime'2020-01-13T14%3A48%3A09.0002226Z'" + - W/"datetime'2020-07-08T16%3A47%3A16.5046853Z'" expires: - '-1' pragma: @@ -171,8 +171,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: @@ -181,12 +181,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A48%3A42.9765856Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T16%3A48%3A01.6918569Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aad903d9-8580-4c30-8527-7c194c98ec74?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35d4a7c3-0189-4268-9436-f93a3b939729?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -194,9 +194,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:48:42 GMT + - Wed, 08 Jul 2020 16:48:02 GMT etag: - - W/"datetime'2020-01-13T14%3A48%3A42.9765856Z'" + - W/"datetime'2020-07-08T16%3A48%3A01.6918569Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aad903d9-8580-4c30-8527-7c194c98ec74?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35d4a7c3-0189-4268-9436-f93a3b939729?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aad903d9-8580-4c30-8527-7c194c98ec74","name":"aad903d9-8580-4c30-8527-7c194c98ec74","status":"Succeeded","startTime":"2020-01-13T14:48:42.386546Z","endTime":"2020-01-13T14:48:44.6054495Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35d4a7c3-0189-4268-9436-f93a3b939729","name":"35d4a7c3-0189-4268-9436-f93a3b939729","status":"Succeeded","startTime":"2020-07-08T16:48:01.2089185Z","endTime":"2020-07-08T16:48:02.7247183Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '550' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:49:14 GMT + - Wed, 08 Jul 2020 16:48:35 GMT expires: - '-1' pragma: @@ -275,13 +275,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A48%3A44.4760131Z''\"","location":"westus2stage","properties":{"poolId":"e193cab3-4a37-feee-3cb8-e071bb62dda6","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T16%3A48%3A02.6177208Z''\"","location":"westus2stage","properties":{"poolId":"40d8caaf-efc2-4c30-9869-a373111c2c47","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -292,9 +292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:49:15 GMT + - Wed, 08 Jul 2020 16:48:36 GMT etag: - - W/"datetime'2020-01-13T14%3A48%3A44.4760131Z'" + - W/"datetime'2020-07-08T16%3A48%3A02.6177208Z'" expires: - '-1' pragma: @@ -318,7 +318,8 @@ interactions: message: OK - request: body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A49%3A21.274064Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A48%3A42.0977082Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b8d766d8-4aa9-4ddc-9eb1-b839cd613bea?api-version=2019-11-01 cache-control: - no-cache content-length: - - '743' + - '770' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:49:21 GMT + - Wed, 08 Jul 2020 16:48:42 GMT etag: - - W/"datetime'2020-01-13T14%3A49%3A21.274064Z'" + - W/"datetime'2020-07-08T16%3A48%3A42.0977082Z'" expires: - '-1' pragma: @@ -384,269 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Creating","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:49:52 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b8d766d8-4aa9-4ddc-9eb1-b839cd613bea?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Creating","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b8d766d8-4aa9-4ddc-9eb1-b839cd613bea","name":"b8d766d8-4aa9-4ddc-9eb1-b839cd613bea","status":"Succeeded","startTime":"2020-07-08T16:48:41.6380966Z","endTime":"2020-07-08T16:49:06.6883642Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:50:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Creating","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:50:53 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Creating","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:51:24 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Creating","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:51:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6345b80-adbe-46b5-a898-b1d202748601","name":"e6345b80-adbe-46b5-a898-b1d202748601","status":"Succeeded","startTime":"2020-01-13T14:49:20.6886575Z","endTime":"2020-01-13T14:52:16.179172Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '576' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:52:25 GMT + - Wed, 08 Jul 2020 16:49:15 GMT expires: - '-1' pragma: @@ -678,26 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A52%3A16.0605493Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_ab4ee255","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A49%3A06.5105915Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d3788351-8114-1301-5066-87508f47138d","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:52:26 GMT + - Wed, 08 Jul 2020 16:49:16 GMT etag: - - W/"datetime'2020-01-13T14%3A52%3A16.0605493Z'" + - W/"datetime'2020-07-08T16%3A49%3A06.5105915Z'" expires: - '-1' pragma: @@ -729,28 +485,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A52%3A16.0605493Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_ab4ee255","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A49%3A06.5105915Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d3788351-8114-1301-5066-87508f47138d","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:52:27 GMT + - Wed, 08 Jul 2020 16:49:19 GMT etag: - - W/"datetime'2020-01-13T14%3A52%3A16.0605493Z'" + - W/"datetime'2020-07-08T16%3A49%3A06.5105915Z'" expires: - '-1' pragma: @@ -773,7 +529,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"fileSystemId": "6db5b73d-37de-31a1-84f1-c3d01ee7d20a"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "d3788351-8114-1301-5066-87508f47138d"}}' headers: Accept: - application/json @@ -786,20 +542,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","name":"sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/390f0fbb-80e0-43e3-a7ef-40553c95fa75?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/100be09b-39f2-42e1-9f0e-d7cf6d1b699b?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -807,11 +563,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:52:30 GMT + - Wed, 08 Jul 2020 16:49:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/390f0fbb-80e0-43e3-a7ef-40553c95fa75?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/100be09b-39f2-42e1-9f0e-d7cf6d1b699b?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -823,7 +579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -839,24 +595,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/390f0fbb-80e0-43e3-a7ef-40553c95fa75?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/100be09b-39f2-42e1-9f0e-d7cf6d1b699b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/390f0fbb-80e0-43e3-a7ef-40553c95fa75","name":"390f0fbb-80e0-43e3-a7ef-40553c95fa75","status":"Succeeded","startTime":"2020-01-13T14:52:29.9297786Z","endTime":"2020-01-13T14:52:32.602791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/100be09b-39f2-42e1-9f0e-d7cf6d1b699b","name":"100be09b-39f2-42e1-9f0e-d7cf6d1b699b","status":"Succeeded","startTime":"2020-07-08T16:49:23.0343023Z","endTime":"2020-07-08T16:49:25.8688316Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '610' + - '611' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:53:01 GMT + - Wed, 08 Jul 2020 16:49:57 GMT expires: - '-1' pragma: @@ -888,13 +644,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"5d8a9d58-eec6-272a-c531-655fc430723f","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T14:52:30Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"e12903d9-a782-f831-44f5-4a0af3c25fe1","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T16:49:23Z"}}' headers: access-control-expose-headers: - Request-Context @@ -905,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:53:02 GMT + - Wed, 08 Jul 2020 16:49:58 GMT expires: - '-1' pragma: @@ -937,15 +693,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"5d8a9d58-eec6-272a-c531-655fc430723f","fileSystemId":"6db5b73d-37de-31a1-84f1-c3d01ee7d20a","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T14:52:30Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"e12903d9-a782-f831-44f5-4a0af3c25fe1","fileSystemId":"d3788351-8114-1301-5066-87508f47138d","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T16:49:23Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -956,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:53:03 GMT + - Wed, 08 Jul 2020 16:49:59 GMT expires: - '-1' pragma: @@ -990,8 +746,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1003,17 +759,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14b27f27-6307-495b-a6bf-9c574e08a2b6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36a7fee5-3751-43bf-b181-c358d4b815b0?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:53:04 GMT + - Wed, 08 Jul 2020 16:50:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14b27f27-6307-495b-a6bf-9c574e08a2b6?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36a7fee5-3751-43bf-b181-c358d4b815b0?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1041,24 +797,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14b27f27-6307-495b-a6bf-9c574e08a2b6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36a7fee5-3751-43bf-b181-c358d4b815b0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14b27f27-6307-495b-a6bf-9c574e08a2b6","name":"14b27f27-6307-495b-a6bf-9c574e08a2b6","status":"Succeeded","startTime":"2020-01-13T14:53:04.1398477Z","endTime":"2020-01-13T14:53:07.5149756Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36a7fee5-3751-43bf-b181-c358d4b815b0","name":"36a7fee5-3751-43bf-b181-c358d4b815b0","status":"Succeeded","startTime":"2020-07-08T16:50:01.057494Z","endTime":"2020-07-08T16:50:04.133159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '611' + - '609' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:53:35 GMT + - Wed, 08 Jul 2020 16:50:34 GMT expires: - '-1' pragma: @@ -1090,8 +846,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1109,7 +865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:53:35 GMT + - Wed, 08 Jul 2020 16:50:34 GMT expires: - '-1' pragma: @@ -1143,8 +899,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1156,17 +912,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72a63d51-f731-4f3a-880a-a29b2ac8f905?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:53:37 GMT + - Wed, 08 Jul 2020 16:50:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72a63d51-f731-4f3a-880a-a29b2ac8f905?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1194,122 +950,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","name":"ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","status":"Deleting","startTime":"2020-01-13T14:53:37.7813735Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:54:09 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72a63d51-f731-4f3a-880a-a29b2ac8f905?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","name":"ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","status":"Deleting","startTime":"2020-01-13T14:53:37.7813735Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72a63d51-f731-4f3a-880a-a29b2ac8f905","name":"72a63d51-f731-4f3a-880a-a29b2ac8f905","status":"Succeeded","startTime":"2020-07-08T16:50:37.464371Z","endTime":"2020-07-08T16:50:44.9997495Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 14:54:40 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","name":"ebf5fdc2-1b52-40a4-aa8b-2986ea48c8a7","status":"Succeeded","startTime":"2020-01-13T14:53:37.7813735Z","endTime":"2020-01-13T14:54:50.0644112Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '577' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:55:10 GMT + - Wed, 08 Jul 2020 16:51:11 GMT expires: - '-1' pragma: @@ -1341,8 +999,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1350,16 +1008,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:55:10 GMT + - Wed, 08 Jul 2020 16:51:11 GMT expires: - '-1' pragma: @@ -1385,8 +1044,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1398,17 +1057,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee18dcbd-628f-4812-a007-5f7a9732b6d8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/858498ad-b434-4076-8891-c1e33c48b6d3?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:55:12 GMT + - Wed, 08 Jul 2020 16:51:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee18dcbd-628f-4812-a007-5f7a9732b6d8?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/858498ad-b434-4076-8891-c1e33c48b6d3?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1436,24 +1095,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee18dcbd-628f-4812-a007-5f7a9732b6d8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/858498ad-b434-4076-8891-c1e33c48b6d3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee18dcbd-628f-4812-a007-5f7a9732b6d8","name":"ee18dcbd-628f-4812-a007-5f7a9732b6d8","status":"Succeeded","startTime":"2020-01-13T14:55:13.037257Z","endTime":"2020-01-13T14:55:13.9904187Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/858498ad-b434-4076-8891-c1e33c48b6d3","name":"858498ad-b434-4076-8891-c1e33c48b6d3","status":"Succeeded","startTime":"2020-07-08T16:51:14.0420657Z","endTime":"2020-07-08T16:51:14.8279483Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '550' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:55:44 GMT + - Wed, 08 Jul 2020 16:51:47 GMT expires: - '-1' pragma: @@ -1487,8 +1146,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1500,7 +1159,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:55:44 GMT + - Wed, 08 Jul 2020 16:51:48 GMT expires: - '-1' pragma: @@ -1526,8 +1185,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1539,7 +1198,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:55:45 GMT + - Wed, 08 Jul 2020 16:51:48 GMT expires: - '-1' pragma: @@ -1565,8 +1224,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1578,7 +1237,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:55:45 GMT + - Wed, 08 Jul 2020 16:51:49 GMT expires: - '-1' pragma: @@ -1604,8 +1263,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1617,7 +1276,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 14:55:45 GMT + - Wed, 08 Jul 2020 16:51:49 GMT expires: - '-1' pragma: @@ -1641,8 +1300,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1650,16 +1309,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:55:46 GMT + - Wed, 08 Jul 2020 16:51:50 GMT expires: - '-1' pragma: @@ -1685,8 +1345,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1698,17 +1358,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e1c4098-aad6-4366-aaf8-971ff85f5b98?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f409840b-4554-45d3-bb9a-76e385d8cef5?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 14:55:47 GMT + - Wed, 08 Jul 2020 16:51:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e1c4098-aad6-4366-aaf8-971ff85f5b98?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f409840b-4554-45d3-bb9a-76e385d8cef5?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1736,13 +1396,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e1c4098-aad6-4366-aaf8-971ff85f5b98?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f409840b-4554-45d3-bb9a-76e385d8cef5?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e1c4098-aad6-4366-aaf8-971ff85f5b98","name":"8e1c4098-aad6-4366-aaf8-971ff85f5b98","status":"Succeeded","startTime":"2020-01-13T14:55:47.7107039Z","endTime":"2020-01-13T14:55:48.6170296Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f409840b-4554-45d3-bb9a-76e385d8cef5","name":"f409840b-4554-45d3-bb9a-76e385d8cef5","status":"Succeeded","startTime":"2020-07-08T16:51:52.8131949Z","endTime":"2020-07-08T16:51:53.8192116Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -1753,7 +1413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:56:19 GMT + - Wed, 08 Jul 2020 16:52:26 GMT expires: - '-1' pragma: @@ -1785,8 +1445,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1794,16 +1454,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:56:19 GMT + - Wed, 08 Jul 2020 16:52:27 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml index 2228c45cedff..71da288edc40 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml @@ -13,20 +13,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A56%3A26.4610577Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T16%3A52%3A39.4966716Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47793e6a-48ca-4f4d-860b-1bf704af97ff?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d385830f-e114-40c4-97f0-5a2dfcc408d2?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -34,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:56:26 GMT + - Wed, 08 Jul 2020 16:52:40 GMT etag: - - W/"datetime'2020-01-13T14%3A56%3A26.4610577Z'" + - W/"datetime'2020-07-08T16%3A52%3A39.4966716Z'" expires: - '-1' pragma: @@ -66,13 +66,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47793e6a-48ca-4f4d-860b-1bf704af97ff?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d385830f-e114-40c4-97f0-5a2dfcc408d2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47793e6a-48ca-4f4d-860b-1bf704af97ff","name":"47793e6a-48ca-4f4d-860b-1bf704af97ff","status":"Succeeded","startTime":"2020-01-13T14:56:25.9344352Z","endTime":"2020-01-13T14:56:27.3719838Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d385830f-e114-40c4-97f0-5a2dfcc408d2","name":"d385830f-e114-40c4-97f0-5a2dfcc408d2","status":"Succeeded","startTime":"2020-07-08T16:52:38.8597138Z","endTime":"2020-07-08T16:52:40.6888315Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:56:57 GMT + - Wed, 08 Jul 2020 16:53:14 GMT expires: - '-1' pragma: @@ -115,13 +115,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T14%3A56%3A27.2448034Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T16%3A52%3A40.1753049Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:56:57 GMT + - Wed, 08 Jul 2020 16:53:15 GMT etag: - - W/"datetime'2020-01-13T14%3A56%3A27.2448034Z'" + - W/"datetime'2020-07-08T16%3A52%3A40.1753049Z'" expires: - '-1' pragma: @@ -171,8 +171,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: @@ -181,12 +181,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A57%3A00.7688362Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T16%3A53%3A24.4075859Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8248b3aa-2768-495a-84b9-50c75d562f79?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55343278-fd6a-4f1e-8a71-6dc531282894?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -194,9 +194,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:57:00 GMT + - Wed, 08 Jul 2020 16:53:25 GMT etag: - - W/"datetime'2020-01-13T14%3A57%3A00.7688362Z'" + - W/"datetime'2020-07-08T16%3A53%3A24.4075859Z'" expires: - '-1' pragma: @@ -226,13 +226,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8248b3aa-2768-495a-84b9-50c75d562f79?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55343278-fd6a-4f1e-8a71-6dc531282894?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8248b3aa-2768-495a-84b9-50c75d562f79","name":"8248b3aa-2768-495a-84b9-50c75d562f79","status":"Succeeded","startTime":"2020-01-13T14:57:00.2644084Z","endTime":"2020-01-13T14:57:01.8268943Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/55343278-fd6a-4f1e-8a71-6dc531282894","name":"55343278-fd6a-4f1e-8a71-6dc531282894","status":"Succeeded","startTime":"2020-07-08T16:53:23.7822755Z","endTime":"2020-07-08T16:53:25.4385269Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:57:51 GMT + - Wed, 08 Jul 2020 16:53:57 GMT expires: - '-1' pragma: @@ -275,13 +275,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T14%3A57%3A01.6967214Z''\"","location":"westus2stage","properties":{"poolId":"53065f80-d85b-221d-2201-0bf3c2ff4a93","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T16%3A53%3A25.3154329Z''\"","location":"westus2stage","properties":{"poolId":"558afe22-c008-2518-3243-331ca3fbb8f0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -292,9 +292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:57:52 GMT + - Wed, 08 Jul 2020 16:53:57 GMT etag: - - W/"datetime'2020-01-13T14%3A57%3A01.6967214Z'" + - W/"datetime'2020-07-08T16%3A53%3A25.3154329Z'" expires: - '-1' pragma: @@ -318,7 +318,8 @@ interactions: message: OK - request: body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T14%3A57%3A55.9694001Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A54%3A04.0005359Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '770' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:57:56 GMT + - Wed, 08 Jul 2020 16:54:04 GMT etag: - - W/"datetime'2020-01-13T14%3A57%3A55.9694001Z'" + - W/"datetime'2020-07-08T16%3A54%3A04.0005359Z'" expires: - '-1' pragma: @@ -384,13 +385,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701","name":"e39c4cfc-3c18-4794-b346-566a65cf7701","status":"Creating","startTime":"2020-01-13T14:57:55.3916826Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -401,7 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:58:27 GMT + - Wed, 08 Jul 2020 16:54:37 GMT expires: - '-1' pragma: @@ -433,13 +434,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701","name":"e39c4cfc-3c18-4794-b346-566a65cf7701","status":"Creating","startTime":"2020-01-13T14:57:55.3916826Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -450,7 +451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:58:57 GMT + - Wed, 08 Jul 2020 16:55:09 GMT expires: - '-1' pragma: @@ -482,13 +483,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701","name":"e39c4cfc-3c18-4794-b346-566a65cf7701","status":"Creating","startTime":"2020-01-13T14:57:55.3916826Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -499,7 +500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:59:28 GMT + - Wed, 08 Jul 2020 16:55:40 GMT expires: - '-1' pragma: @@ -531,13 +532,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701","name":"e39c4cfc-3c18-4794-b346-566a65cf7701","status":"Creating","startTime":"2020-01-13T14:57:55.3916826Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -548,7 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 14:59:59 GMT + - Wed, 08 Jul 2020 16:56:11 GMT expires: - '-1' pragma: @@ -580,24 +581,122 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e39c4cfc-3c18-4794-b346-566a65cf7701","name":"e39c4cfc-3c18-4794-b346-566a65cf7701","status":"Succeeded","startTime":"2020-01-13T14:57:55.3916826Z","endTime":"2020-01-13T15:00:26.7490402Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 16:56:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Creating","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 16:57:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/439df020-c2e2-42e0-95bf-736be312cabd","name":"439df020-c2e2-42e0-95bf-736be312cabd","status":"Succeeded","startTime":"2020-07-08T16:54:03.4400679Z","endTime":"2020-07-08T16:57:18.69132Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:00:29 GMT + - Wed, 08 Jul 2020 16:57:45 GMT expires: - '-1' pragma: @@ -629,26 +728,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A00%3A26.6307818Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_440772f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"30b72da2-61f8-0048-0a9e-c6431873f820","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A57%3A18.5180745Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"279e0603-2909-f435-cb7d-22768050ae64","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_e5c44ff6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:00:30 GMT + - Wed, 08 Jul 2020 16:57:46 GMT etag: - - W/"datetime'2020-01-13T15%3A00%3A26.6307818Z'" + - W/"datetime'2020-07-08T16%3A57%3A18.5180745Z'" expires: - '-1' pragma: @@ -680,28 +779,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A00%3A26.6307818Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_440772f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"30b72da2-61f8-0048-0a9e-c6431873f820","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T16%3A57%3A18.5180745Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"279e0603-2909-f435-cb7d-22768050ae64","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_e5c44ff6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:00:32 GMT + - Wed, 08 Jul 2020 16:57:50 GMT etag: - - W/"datetime'2020-01-13T15%3A00%3A26.6307818Z'" + - W/"datetime'2020-07-08T16%3A57%3A18.5180745Z'" expires: - '-1' pragma: @@ -724,7 +823,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"fileSystemId": "30b72da2-61f8-0048-0a9e-c6431873f820"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "279e0603-2909-f435-cb7d-22768050ae64"}}' headers: Accept: - application/json @@ -737,20 +836,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","name":"sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45f4fc11-f7dc-444a-a0d3-dd0ed57edbc7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa76ddef-a10f-40b0-a9d1-2c9996e35ec7?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -758,11 +857,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:00:35 GMT + - Wed, 08 Jul 2020 16:57:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45f4fc11-f7dc-444a-a0d3-dd0ed57edbc7?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa76ddef-a10f-40b0-a9d1-2c9996e35ec7?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -790,13 +889,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45f4fc11-f7dc-444a-a0d3-dd0ed57edbc7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa76ddef-a10f-40b0-a9d1-2c9996e35ec7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45f4fc11-f7dc-444a-a0d3-dd0ed57edbc7","name":"45f4fc11-f7dc-444a-a0d3-dd0ed57edbc7","status":"Succeeded","startTime":"2020-01-13T15:00:34.6553133Z","endTime":"2020-01-13T15:00:37.1240477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa76ddef-a10f-40b0-a9d1-2c9996e35ec7","name":"aa76ddef-a10f-40b0-a9d1-2c9996e35ec7","status":"Succeeded","startTime":"2020-07-08T16:57:56.4692544Z","endTime":"2020-07-08T16:57:59.2578137Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context @@ -807,7 +906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:01:06 GMT + - Wed, 08 Jul 2020 16:58:31 GMT expires: - '-1' pragma: @@ -839,13 +938,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"8f3e5a8c-8b44-1952-9f5e-9ef086e7a630","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T15:00:35Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"02278631-2122-7299-0874-7a7d1bcfabc6","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T16:57:57Z"}}' headers: access-control-expose-headers: - Request-Context @@ -856,7 +955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:01:07 GMT + - Wed, 08 Jul 2020 16:58:32 GMT expires: - '-1' pragma: @@ -888,15 +987,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"8f3e5a8c-8b44-1952-9f5e-9ef086e7a630","fileSystemId":"30b72da2-61f8-0048-0a9e-c6431873f820","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T15:00:35Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"02278631-2122-7299-0874-7a7d1bcfabc6","fileSystemId":"279e0603-2909-f435-cb7d-22768050ae64","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T16:57:57Z"}}' headers: access-control-expose-headers: - Request-Context @@ -907,7 +1006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:01:08 GMT + - Wed, 08 Jul 2020 16:58:33 GMT expires: - '-1' pragma: @@ -941,8 +1040,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -954,17 +1053,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89da71d0-bbd9-4f7c-8469-7c4a034bf2f6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdce1060-36b6-490e-8703-5f0788ee366b?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:01:09 GMT + - Wed, 08 Jul 2020 16:58:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89da71d0-bbd9-4f7c-8469-7c4a034bf2f6?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdce1060-36b6-490e-8703-5f0788ee366b?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -992,24 +1091,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89da71d0-bbd9-4f7c-8469-7c4a034bf2f6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdce1060-36b6-490e-8703-5f0788ee366b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/89da71d0-bbd9-4f7c-8469-7c4a034bf2f6","name":"89da71d0-bbd9-4f7c-8469-7c4a034bf2f6","status":"Succeeded","startTime":"2020-01-13T15:01:09.3917306Z","endTime":"2020-01-13T15:01:12.829231Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdce1060-36b6-490e-8703-5f0788ee366b","name":"cdce1060-36b6-490e-8703-5f0788ee366b","status":"Succeeded","startTime":"2020-07-08T16:58:35.1097398Z","endTime":"2020-07-08T16:58:38.6881604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '610' + - '611' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:01:40 GMT + - Wed, 08 Jul 2020 16:59:08 GMT expires: - '-1' pragma: @@ -1043,8 +1142,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1056,17 +1155,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:01:41 GMT + - Wed, 08 Jul 2020 16:59:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1094,13 +1193,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c","name":"522da452-2727-4a37-aab4-bc2b710f8d1c","status":"Deleting","startTime":"2020-01-13T15:01:42.2565557Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8","name":"d95c4680-9164-41c9-acc2-3ffea0caace8","status":"Deleting","startTime":"2020-07-08T16:59:10.6894973Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -1111,7 +1210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:02:13 GMT + - Wed, 08 Jul 2020 16:59:44 GMT expires: - '-1' pragma: @@ -1143,13 +1242,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c","name":"522da452-2727-4a37-aab4-bc2b710f8d1c","status":"Deleting","startTime":"2020-01-13T15:01:42.2565557Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8","name":"d95c4680-9164-41c9-acc2-3ffea0caace8","status":"Deleting","startTime":"2020-07-08T16:59:10.6894973Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -1160,7 +1259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:02:43 GMT + - Wed, 08 Jul 2020 17:00:15 GMT expires: - '-1' pragma: @@ -1192,24 +1291,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/522da452-2727-4a37-aab4-bc2b710f8d1c","name":"522da452-2727-4a37-aab4-bc2b710f8d1c","status":"Succeeded","startTime":"2020-01-13T15:01:42.2565557Z","endTime":"2020-01-13T15:02:45.2487931Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8","name":"d95c4680-9164-41c9-acc2-3ffea0caace8","status":"Deleting","startTime":"2020-07-08T16:59:10.6894973Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '577' + - '566' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:03:15 GMT + - Wed, 08 Jul 2020 17:00:46 GMT expires: - '-1' pragma: @@ -1241,8 +1340,57 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d95c4680-9164-41c9-acc2-3ffea0caace8","name":"d95c4680-9164-41c9-acc2-3ffea0caace8","status":"Succeeded","startTime":"2020-07-08T16:59:10.6894973Z","endTime":"2020-07-08T17:00:49.843118Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 17:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1250,16 +1398,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:03:15 GMT + - Wed, 08 Jul 2020 17:01:19 GMT expires: - '-1' pragma: @@ -1285,8 +1434,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1298,17 +1447,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/27904cf6-2aaa-48f7-9d9f-bcc9aa7a6982?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1550d18e-f5cb-4aa6-86a1-154551153747?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:03:17 GMT + - Wed, 08 Jul 2020 17:01:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/27904cf6-2aaa-48f7-9d9f-bcc9aa7a6982?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1550d18e-f5cb-4aa6-86a1-154551153747?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1336,24 +1485,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/27904cf6-2aaa-48f7-9d9f-bcc9aa7a6982?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1550d18e-f5cb-4aa6-86a1-154551153747?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/27904cf6-2aaa-48f7-9d9f-bcc9aa7a6982","name":"27904cf6-2aaa-48f7-9d9f-bcc9aa7a6982","status":"Succeeded","startTime":"2020-01-13T15:03:17.5266161Z","endTime":"2020-01-13T15:03:18.733513Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1550d18e-f5cb-4aa6-86a1-154551153747","name":"1550d18e-f5cb-4aa6-86a1-154551153747","status":"Succeeded","startTime":"2020-07-08T17:01:22.7886755Z","endTime":"2020-07-08T17:01:23.6793355Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '549' + - '550' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:03:48 GMT + - Wed, 08 Jul 2020 17:01:56 GMT expires: - '-1' pragma: @@ -1387,8 +1536,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1397,28 +1546,20 @@ interactions: body: string: '' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:03:51 GMT + - Wed, 08 Jul 2020 17:01:56 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14996' - x-powered-by: - - ASP.NET status: code: 204 message: No Content @@ -1434,8 +1575,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1447,7 +1588,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:03:51 GMT + - Wed, 08 Jul 2020 17:01:57 GMT expires: - '-1' pragma: @@ -1473,8 +1614,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1486,7 +1627,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:03:51 GMT + - Wed, 08 Jul 2020 17:01:57 GMT expires: - '-1' pragma: @@ -1512,8 +1653,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1525,7 +1666,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:03:52 GMT + - Wed, 08 Jul 2020 17:01:58 GMT expires: - '-1' pragma: @@ -1549,8 +1690,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1558,16 +1699,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:03:52 GMT + - Wed, 08 Jul 2020 17:01:58 GMT expires: - '-1' pragma: @@ -1593,8 +1735,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1606,17 +1748,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/412cf32a-5169-4cd9-9e9b-90275308c4d6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40af7714-e59f-4652-892b-f2469d8672e6?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:03:54 GMT + - Wed, 08 Jul 2020 17:02:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/412cf32a-5169-4cd9-9e9b-90275308c4d6?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40af7714-e59f-4652-892b-f2469d8672e6?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1644,13 +1786,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/412cf32a-5169-4cd9-9e9b-90275308c4d6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40af7714-e59f-4652-892b-f2469d8672e6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/412cf32a-5169-4cd9-9e9b-90275308c4d6","name":"412cf32a-5169-4cd9-9e9b-90275308c4d6","status":"Succeeded","startTime":"2020-01-13T15:03:53.7102974Z","endTime":"2020-01-13T15:03:54.6634299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40af7714-e59f-4652-892b-f2469d8672e6","name":"40af7714-e59f-4652-892b-f2469d8672e6","status":"Succeeded","startTime":"2020-07-08T17:02:01.2932561Z","endTime":"2020-07-08T17:02:02.1369792Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -1661,7 +1803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:04:24 GMT + - Wed, 08 Jul 2020 17:02:34 GMT expires: - '-1' pragma: @@ -1693,8 +1835,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1702,16 +1844,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:04:25 GMT + - Wed, 08 Jul 2020 17:02:35 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml index cd21cef83d21..8f2c655cf065 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T15%3A04%3A32.9954341Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T17%3A02%3A48.0271116Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f624c67f-866c-4da4-8460-07d86cfc49d1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79bc2dca-0e66-43ec-99df-4465b7928997?api-version=2019-11-01 cache-control: - no-cache content-length: - - '380' + - '381' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:04:32 GMT + - Wed, 08 Jul 2020 17:02:49 GMT etag: - - W/"datetime'2020-01-13T15%3A04%3A32.9954341Z'" + - W/"datetime'2020-07-08T17%3A02%3A48.0271116Z'" expires: - '-1' pragma: @@ -66,13 +66,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f624c67f-866c-4da4-8460-07d86cfc49d1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79bc2dca-0e66-43ec-99df-4465b7928997?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f624c67f-866c-4da4-8460-07d86cfc49d1","name":"f624c67f-866c-4da4-8460-07d86cfc49d1","status":"Succeeded","startTime":"2020-01-13T15:04:32.3086145Z","endTime":"2020-01-13T15:04:33.9023693Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/79bc2dca-0e66-43ec-99df-4465b7928997","name":"79bc2dca-0e66-43ec-99df-4465b7928997","status":"Succeeded","startTime":"2020-07-08T17:02:47.6000564Z","endTime":"2020-07-08T17:02:48.8054743Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:04 GMT + - Wed, 08 Jul 2020 17:03:23 GMT expires: - '-1' pragma: @@ -115,13 +115,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-13T15%3A04%3A33.7961967Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T17%3A02%3A48.6897255Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:05 GMT + - Wed, 08 Jul 2020 17:03:23 GMT etag: - - W/"datetime'2020-01-13T15%3A04%3A33.7961967Z'" + - W/"datetime'2020-07-08T17%3A02%3A48.6897255Z'" expires: - '-1' pragma: @@ -171,8 +171,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: @@ -181,22 +181,22 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T15%3A05%3A07.6935037Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T17%3A03%3A34.687533Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/41fa5b4b-47cf-411f-b4f7-9e1dc42d6a4c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/937f0681-9137-4f86-a86b-c1b3cb4aca49?api-version=2019-11-01 cache-control: - no-cache content-length: - - '466' + - '465' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:07 GMT + - Wed, 08 Jul 2020 17:03:35 GMT etag: - - W/"datetime'2020-01-13T15%3A05%3A07.6935037Z'" + - W/"datetime'2020-07-08T17%3A03%3A34.687533Z'" expires: - '-1' pragma: @@ -226,13 +226,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/41fa5b4b-47cf-411f-b4f7-9e1dc42d6a4c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/937f0681-9137-4f86-a86b-c1b3cb4aca49?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/41fa5b4b-47cf-411f-b4f7-9e1dc42d6a4c","name":"41fa5b4b-47cf-411f-b4f7-9e1dc42d6a4c","status":"Succeeded","startTime":"2020-01-13T15:05:07.0003122Z","endTime":"2020-01-13T15:05:08.7985781Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/937f0681-9137-4f86-a86b-c1b3cb4aca49","name":"937f0681-9137-4f86-a86b-c1b3cb4aca49","status":"Succeeded","startTime":"2020-07-08T17:03:34.2433891Z","endTime":"2020-07-08T17:03:35.9467612Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:39 GMT + - Wed, 08 Jul 2020 17:04:09 GMT expires: - '-1' pragma: @@ -275,13 +275,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-13T15%3A05%3A08.6934567Z''\"","location":"westus2stage","properties":{"poolId":"f6d0bdde-859b-6591-2b6d-799a1bd1db25","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T17%3A03%3A35.8346031Z''\"","location":"westus2stage","properties":{"poolId":"4048adbb-11f2-936e-0136-5583721c5e5a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -292,9 +292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:39 GMT + - Wed, 08 Jul 2020 17:04:10 GMT etag: - - W/"datetime'2020-01-13T15%3A05%3A08.6934567Z'" + - W/"datetime'2020-07-08T17%3A03%3A35.8346031Z'" expires: - '-1' pragma: @@ -318,7 +318,8 @@ interactions: message: OK - request: body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": + ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: - application/json @@ -327,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '322' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A05%3A43.0922219Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T17%3A04%3A16.8026397Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e8a1c7e-7127-4622-a174-9073b3eea58f?api-version=2019-11-01 cache-control: - no-cache content-length: - - '744' + - '770' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:05:42 GMT + - Wed, 08 Jul 2020 17:04:17 GMT etag: - - W/"datetime'2020-01-13T15%3A05%3A43.0922219Z'" + - W/"datetime'2020-07-08T17%3A04%3A16.8026397Z'" expires: - '-1' pragma: @@ -384,258 +385,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Creating","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:06:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e8a1c7e-7127-4622-a174-9073b3eea58f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Creating","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:06:45 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Creating","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:07:16 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Creating","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:07:46 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Creating","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:08:18 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","name":"fb58ff3b-cce3-4371-9d24-6552c4c4a1dd","status":"Succeeded","startTime":"2020-01-13T15:05:42.5024489Z","endTime":"2020-01-13T15:08:18.2512751Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e8a1c7e-7127-4622-a174-9073b3eea58f","name":"3e8a1c7e-7127-4622-a174-9073b3eea58f","status":"Succeeded","startTime":"2020-07-08T17:04:16.3812998Z","endTime":"2020-07-08T17:04:42.0348758Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -646,7 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:08:48 GMT + - Wed, 08 Jul 2020 17:04:50 GMT expires: - '-1' pragma: @@ -678,26 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A08%3A18.1248827Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_0759dd07","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5547f759-e157-e9d9-9f11-b121db57511e","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T17%3A04%3A41.8650088Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:08:49 GMT + - Wed, 08 Jul 2020 17:04:52 GMT etag: - - W/"datetime'2020-01-13T15%3A08%3A18.1248827Z'" + - W/"datetime'2020-07-08T17%3A04%3A41.8650088Z'" expires: - '-1' pragma: @@ -729,28 +485,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A08%3A18.1248827Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_0759dd07","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5547f759-e157-e9d9-9f11-b121db57511e","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T17%3A04%3A41.8650088Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:08:50 GMT + - Wed, 08 Jul 2020 17:04:53 GMT etag: - - W/"datetime'2020-01-13T15%3A08%3A18.1248827Z'" + - W/"datetime'2020-07-08T17%3A04%3A41.8650088Z'" expires: - '-1' pragma: @@ -773,7 +529,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"fileSystemId": "5547f759-e157-e9d9-9f11-b121db57511e"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "4ae55432-31f3-94d1-3d44-f89d92d10bfd"}}' headers: Accept: - application/json @@ -786,20 +542,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72405000-e2d1-4e40-8583-2c16384233e1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/afa833d8-1693-45e2-ba84-c02c27601ee0?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -807,11 +563,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:08:52 GMT + - Wed, 08 Jul 2020 17:04:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72405000-e2d1-4e40-8583-2c16384233e1?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/afa833d8-1693-45e2-ba84-c02c27601ee0?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -823,7 +579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -839,13 +595,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72405000-e2d1-4e40-8583-2c16384233e1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/afa833d8-1693-45e2-ba84-c02c27601ee0?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/72405000-e2d1-4e40-8583-2c16384233e1","name":"72405000-e2d1-4e40-8583-2c16384233e1","status":"Succeeded","startTime":"2020-01-13T15:08:52.5616604Z","endTime":"2020-01-13T15:08:55.1242791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/afa833d8-1693-45e2-ba84-c02c27601ee0","name":"afa833d8-1693-45e2-ba84-c02c27601ee0","status":"Succeeded","startTime":"2020-07-08T17:04:57.3313962Z","endTime":"2020-07-08T17:05:00.4514343Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context @@ -856,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:09:24 GMT + - Wed, 08 Jul 2020 17:05:31 GMT expires: - '-1' pragma: @@ -888,13 +644,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"035948d2-09ad-e5c6-7681-6c54d94fa8c6","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T15:08:53Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"f4816882-58fe-11bf-aa99-09a1f21b0888","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T17:04:57Z"}}' headers: access-control-expose-headers: - Request-Context @@ -905,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:09:25 GMT + - Wed, 08 Jul 2020 17:05:32 GMT expires: - '-1' pragma: @@ -937,28 +693,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-13T15%3A08%3A18.1248827Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_0759dd07","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5547f759-e157-e9d9-9f11-b121db57511e","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","startIp":"10.1.8.4","endIp":"10.1.8.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T17%3A04%3A41.8650088Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '1356' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:09:25 GMT + - Wed, 08 Jul 2020 17:05:33 GMT etag: - - W/"datetime'2020-01-13T15%3A08%3A18.1248827Z'" + - W/"datetime'2020-07-08T17%3A04%3A41.8650088Z'" expires: - '-1' pragma: @@ -981,7 +737,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "properties": {"fileSystemId": "5547f759-e157-e9d9-9f11-b121db57511e"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "4ae55432-31f3-94d1-3d44-f89d92d10bfd"}}' headers: Accept: - application/json @@ -994,20 +750,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-2"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/243b3837-342a-425e-9a85-96eff7c31326?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/051d8e88-f0c3-4a37-8ee5-000f95c76586?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -1015,11 +771,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:09:27 GMT + - Wed, 08 Jul 2020 17:05:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/243b3837-342a-425e-9a85-96eff7c31326?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/051d8e88-f0c3-4a37-8ee5-000f95c76586?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1031,7 +787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -1047,24 +803,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/243b3837-342a-425e-9a85-96eff7c31326?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/051d8e88-f0c3-4a37-8ee5-000f95c76586?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/243b3837-342a-425e-9a85-96eff7c31326","name":"243b3837-342a-425e-9a85-96eff7c31326","status":"Succeeded","startTime":"2020-01-13T15:09:27.5726695Z","endTime":"2020-01-13T15:09:29.7439049Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/051d8e88-f0c3-4a37-8ee5-000f95c76586","name":"051d8e88-f0c3-4a37-8ee5-000f95c76586","status":"Succeeded","startTime":"2020-07-08T17:05:37.6458381Z","endTime":"2020-07-08T17:05:40.694174Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '611' + - '610' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:09:58 GMT + - Wed, 08 Jul 2020 17:06:11 GMT expires: - '-1' pragma: @@ -1096,13 +852,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"2c3e7327-9ed4-6d91-7816-c80134c2472d","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-2","created":"2020-01-13T15:09:27Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"90520dd8-af29-00d8-7b93-e10665c05b3a","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-2","created":"2020-07-08T17:05:38Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1113,7 +869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:10:00 GMT + - Wed, 08 Jul 2020 17:06:12 GMT expires: - '-1' pragma: @@ -1145,15 +901,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"035948d2-09ad-e5c6-7681-6c54d94fa8c6","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-1","created":"2020-01-13T15:08:53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"2c3e7327-9ed4-6d91-7816-c80134c2472d","fileSystemId":"5547f759-e157-e9d9-9f11-b121db57511e","name":"sdk-py-tests-snapshot-2","created":"2020-01-13T15:09:27Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"f4816882-58fe-11bf-aa99-09a1f21b0888","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-1","created":"2020-07-08T17:04:57Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"90520dd8-af29-00d8-7b93-e10665c05b3a","fileSystemId":"4ae55432-31f3-94d1-3d44-f89d92d10bfd","name":"sdk-py-tests-snapshot-2","created":"2020-07-08T17:05:38Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1164,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:10:00 GMT + - Wed, 08 Jul 2020 17:06:14 GMT expires: - '-1' pragma: @@ -1198,8 +954,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1211,17 +967,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c1063fbb-c0a4-4a14-a8e8-6f53b965e967?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/90874430-4d4c-4e10-8bc2-f49f6a446ba7?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:10:01 GMT + - Wed, 08 Jul 2020 17:06:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c1063fbb-c0a4-4a14-a8e8-6f53b965e967?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/90874430-4d4c-4e10-8bc2-f49f6a446ba7?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1249,24 +1005,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c1063fbb-c0a4-4a14-a8e8-6f53b965e967?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/90874430-4d4c-4e10-8bc2-f49f6a446ba7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c1063fbb-c0a4-4a14-a8e8-6f53b965e967","name":"c1063fbb-c0a4-4a14-a8e8-6f53b965e967","status":"Succeeded","startTime":"2020-01-13T15:10:01.6485045Z","endTime":"2020-01-13T15:10:04.742416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/90874430-4d4c-4e10-8bc2-f49f6a446ba7","name":"90874430-4d4c-4e10-8bc2-f49f6a446ba7","status":"Succeeded","startTime":"2020-07-08T17:06:15.6710201Z","endTime":"2020-07-08T17:06:18.4195322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '610' + - '611' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:10:33 GMT + - Wed, 08 Jul 2020 17:06:48 GMT expires: - '-1' pragma: @@ -1300,8 +1056,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1313,17 +1069,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ffaaf7-3dd0-4b93-a44a-400d6fd2cb84?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/596e62f3-3ea9-4217-93d2-076d364a195c?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:10:34 GMT + - Wed, 08 Jul 2020 17:06:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ffaaf7-3dd0-4b93-a44a-400d6fd2cb84?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/596e62f3-3ea9-4217-93d2-076d364a195c?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1351,13 +1107,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ffaaf7-3dd0-4b93-a44a-400d6fd2cb84?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/596e62f3-3ea9-4217-93d2-076d364a195c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ffaaf7-3dd0-4b93-a44a-400d6fd2cb84","name":"48ffaaf7-3dd0-4b93-a44a-400d6fd2cb84","status":"Succeeded","startTime":"2020-01-13T15:10:34.2255985Z","endTime":"2020-01-13T15:10:37.1163449Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/596e62f3-3ea9-4217-93d2-076d364a195c","name":"596e62f3-3ea9-4217-93d2-076d364a195c","status":"Succeeded","startTime":"2020-07-08T17:06:50.2256042Z","endTime":"2020-07-08T17:06:52.9369208Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2"}}' headers: access-control-expose-headers: - Request-Context @@ -1368,7 +1124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:11:05 GMT + - Wed, 08 Jul 2020 17:07:23 GMT expires: - '-1' pragma: @@ -1402,8 +1158,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1415,17 +1171,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c737dedd-96ea-4e6c-be34-058da4f3302e?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:11:06 GMT + - Wed, 08 Jul 2020 17:07:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c737dedd-96ea-4e6c-be34-058da4f3302e?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1453,122 +1209,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286","name":"4b94f65d-d7db-4a1d-a5c1-40c5b7871286","status":"Deleting","startTime":"2020-01-13T15:11:07.0199859Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:11:39 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c737dedd-96ea-4e6c-be34-058da4f3302e?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286","name":"4b94f65d-d7db-4a1d-a5c1-40c5b7871286","status":"Deleting","startTime":"2020-01-13T15:11:07.0199859Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c737dedd-96ea-4e6c-be34-058da4f3302e","name":"c737dedd-96ea-4e6c-be34-058da4f3302e","status":"Succeeded","startTime":"2020-07-08T17:07:25.9754093Z","endTime":"2020-07-08T17:07:30.5938873Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jan 2020 15:12:09 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4b94f65d-d7db-4a1d-a5c1-40c5b7871286","name":"4b94f65d-d7db-4a1d-a5c1-40c5b7871286","status":"Succeeded","startTime":"2020-01-13T15:11:07.0199859Z","endTime":"2020-01-13T15:12:18.986577Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '576' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:12:39 GMT + - Wed, 08 Jul 2020 17:07:59 GMT expires: - '-1' pragma: @@ -1600,8 +1258,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1609,16 +1267,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:12:40 GMT + - Wed, 08 Jul 2020 17:08:00 GMT expires: - '-1' pragma: @@ -1644,8 +1303,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1657,17 +1316,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0fb60334-9448-4605-861e-209fb157d9b9?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fca7714-2c40-433f-8173-6e5d3f0e431c?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:12:42 GMT + - Wed, 08 Jul 2020 17:08:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0fb60334-9448-4605-861e-209fb157d9b9?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fca7714-2c40-433f-8173-6e5d3f0e431c?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1695,13 +1354,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0fb60334-9448-4605-861e-209fb157d9b9?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fca7714-2c40-433f-8173-6e5d3f0e431c?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0fb60334-9448-4605-861e-209fb157d9b9","name":"0fb60334-9448-4605-861e-209fb157d9b9","status":"Succeeded","startTime":"2020-01-13T15:12:42.1362279Z","endTime":"2020-01-13T15:12:43.1205972Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1fca7714-2c40-433f-8173-6e5d3f0e431c","name":"1fca7714-2c40-433f-8173-6e5d3f0e431c","status":"Succeeded","startTime":"2020-07-08T17:08:02.6572745Z","endTime":"2020-07-08T17:08:03.4855615Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context @@ -1712,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:13:13 GMT + - Wed, 08 Jul 2020 17:08:35 GMT expires: - '-1' pragma: @@ -1746,8 +1405,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1759,7 +1418,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:13:13 GMT + - Wed, 08 Jul 2020 17:08:35 GMT expires: - '-1' pragma: @@ -1785,8 +1444,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1798,7 +1457,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:13:14 GMT + - Wed, 08 Jul 2020 17:08:36 GMT expires: - '-1' pragma: @@ -1824,8 +1483,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1837,7 +1496,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:13:14 GMT + - Wed, 08 Jul 2020 17:08:37 GMT expires: - '-1' pragma: @@ -1863,8 +1522,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1876,7 +1535,7 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Jan 2020 15:13:14 GMT + - Wed, 08 Jul 2020 17:08:37 GMT expires: - '-1' pragma: @@ -1900,8 +1559,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1909,16 +1568,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:13:15 GMT + - Wed, 08 Jul 2020 17:08:38 GMT expires: - '-1' pragma: @@ -1944,8 +1604,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1957,17 +1617,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a3f8bb47-8894-4639-858d-28b47455ffdd?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/74309a69-1ea1-4091-8c9f-84ff7f8c6f41?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jan 2020 15:13:16 GMT + - Wed, 08 Jul 2020 17:08:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a3f8bb47-8894-4639-858d-28b47455ffdd?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/74309a69-1ea1-4091-8c9f-84ff7f8c6f41?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1995,13 +1655,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a3f8bb47-8894-4639-858d-28b47455ffdd?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/74309a69-1ea1-4091-8c9f-84ff7f8c6f41?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a3f8bb47-8894-4639-858d-28b47455ffdd","name":"a3f8bb47-8894-4639-858d-28b47455ffdd","status":"Succeeded","startTime":"2020-01-13T15:13:16.8447145Z","endTime":"2020-01-13T15:13:17.7353606Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/74309a69-1ea1-4091-8c9f-84ff7f8c6f41","name":"74309a69-1ea1-4091-8c9f-84ff7f8c6f41","status":"Succeeded","startTime":"2020-07-08T17:08:41.4900837Z","endTime":"2020-07-08T17:08:42.4122455Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -2012,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:13:48 GMT + - Wed, 08 Jul 2020 17:09:14 GMT expires: - '-1' pragma: @@ -2044,8 +1704,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -2053,16 +1713,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 15:13:49 GMT + - Wed, 08 Jul 2020 17:09:16 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml index 7be9bd65bd6c..ed829af7e893 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A01%3A37.3180055Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A43%3A36.4709296Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c9359f6d-9379-4fe4-8e65-2a38d615873f?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:01:39 GMT + - Wed, 08 Jul 2020 12:43:37 GMT etag: - - W/"datetime'2020-05-27T13%3A01%3A37.3180055Z'" + - W/"datetime'2020-07-08T12%3A43%3A36.4709296Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c9359f6d-9379-4fe4-8e65-2a38d615873f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba428af8-a24d-46ec-8380-e06a43ddabf3","name":"ba428af8-a24d-46ec-8380-e06a43ddabf3","status":"Succeeded","startTime":"2020-05-27T13:01:37.2752399Z","endTime":"2020-05-27T13:01:37.3846166Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c9359f6d-9379-4fe4-8e65-2a38d615873f","name":"c9359f6d-9379-4fe4-8e65-2a38d615873f","status":"Succeeded","startTime":"2020-07-08T12:43:35.8013549Z","endTime":"2020-07-08T12:43:37.2547042Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:02:13 GMT + - Wed, 08 Jul 2020 12:44:09 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A01%3A37.3840685Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A43%3A37.144593Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:02:13 GMT + - Wed, 08 Jul 2020 12:44:09 GMT etag: - - W/"datetime'2020-05-27T13%3A01%3A37.3840685Z'" + - W/"datetime'2020-07-08T12%3A43%3A37.144593Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A02%3A16.9237837Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A44%3A20.1217385Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2c0b6a6-4aad-4e35-94b1-ebde84ea687a?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:02:18 GMT + - Wed, 08 Jul 2020 12:44:20 GMT etag: - - W/"datetime'2020-05-27T13%3A02%3A16.9237837Z'" + - W/"datetime'2020-07-08T12%3A44%3A20.1217385Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2c0b6a6-4aad-4e35-94b1-ebde84ea687a?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/89c6bece-8d8d-4e88-beec-6cec270341e7","name":"89c6bece-8d8d-4e88-beec-6cec270341e7","status":"Succeeded","startTime":"2020-05-27T13:02:16.8662645Z","endTime":"2020-05-27T13:02:17.288147Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2c0b6a6-4aad-4e35-94b1-ebde84ea687a","name":"a2c0b6a6-4aad-4e35-94b1-ebde84ea687a","status":"Succeeded","startTime":"2020-07-08T12:44:19.6668273Z","endTime":"2020-07-08T12:44:21.3544772Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '543' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:02:50 GMT + - Wed, 08 Jul 2020 12:44:52 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A02%3A17.2891321Z''\"","location":"eastus","properties":{"poolId":"37e500c0-1a92-4f27-ecc1-da92331956f4","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A44%3A21.2418351Z''\"","location":"westus2stage","properties":{"poolId":"50fdf7ad-acea-c26d-5706-842d49c1f9b4","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:02:51 GMT + - Wed, 08 Jul 2020 12:44:53 GMT etag: - - W/"datetime'2020-05-27T13%3A02%3A17.2891321Z'" + - W/"datetime'2020-07-08T12%3A44%3A21.2418351Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -328,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A03%3A04.6972778Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A45%3A10.6689836Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f0fe3ef9-5bf2-4c34-82bb-df5705d592eb?api-version=2019-11-01 cache-control: - no-cache content-length: - - '764' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:03:05 GMT + - Wed, 08 Jul 2020 12:45:11 GMT etag: - - W/"datetime'2020-05-27T13%3A03%3A04.6972778Z'" + - W/"datetime'2020-07-08T12%3A45%3A10.6689836Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f0fe3ef9-5bf2-4c34-82bb-df5705d592eb?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f0fe3ef9-5bf2-4c34-82bb-df5705d592eb","name":"f0fe3ef9-5bf2-4c34-82bb-df5705d592eb","status":"Succeeded","startTime":"2020-07-08T12:45:10.1946421Z","endTime":"2020-07-08T12:45:33.2079598Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '560' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:03:39 GMT + - Wed, 08 Jul 2020 12:45:43 GMT expires: - '-1' pragma: @@ -434,369 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:04:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:05:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:05:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:06:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:06:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Creating","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:07:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74bb2e55-3ab6-45e4-92f8-3c72c2187837","name":"74bb2e55-3ab6-45e4-92f8-3c72c2187837","status":"Succeeded","startTime":"2020-05-27T13:03:04.6459441Z","endTime":"2020-05-27T13:07:12.8394952Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:07:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A07%3A12.8440065Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8623576a-9e6e-9e00-e478-02554d5bcab8","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_9b97807c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A45%3A33.0307163Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"eb176b46-1d6b-9e41-a940-715dfa76825e","fileSystemId":"eb176b46-1d6b-9e41-a940-715dfa76825e","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"eb176b46-1d6b-9e41-a940-715dfa76825e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:07:35 GMT + - Wed, 08 Jul 2020 12:45:44 GMT etag: - - W/"datetime'2020-05-27T13%3A07%3A12.8440065Z'" + - W/"datetime'2020-07-08T12%3A45%3A33.0307163Z'" expires: - '-1' pragma: @@ -828,26 +485,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A07%3A12.8440065Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8623576a-9e6e-9e00-e478-02554d5bcab8","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8623576a-9e6e-9e00-e478-02554d5bcab8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_9b97807c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A45%3A33.0307163Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"eb176b46-1d6b-9e41-a940-715dfa76825e","fileSystemId":"eb176b46-1d6b-9e41-a940-715dfa76825e","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"eb176b46-1d6b-9e41-a940-715dfa76825e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1362' + - '1368' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:07:39 GMT + - Wed, 08 Jul 2020 12:45:47 GMT expires: - '-1' pragma: @@ -881,8 +538,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -894,17 +551,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/21d5e498-620d-4cc3-b875-8e39fa005e32?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:07:41 GMT + - Wed, 08 Jul 2020 12:45:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/21d5e498-620d-4cc3-b875-8e39fa005e32?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -932,122 +589,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Deleting","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:08:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Deleting","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:08:44 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/21d5e498-620d-4cc3-b875-8e39fa005e32?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9790e973-4d5b-4fce-8920-f8321df77d45","name":"9790e973-4d5b-4fce-8920-f8321df77d45","status":"Succeeded","startTime":"2020-05-27T13:07:41.1750592Z","endTime":"2020-05-27T13:08:53.260295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/21d5e498-620d-4cc3-b875-8e39fa005e32","name":"21d5e498-620d-4cc3-b875-8e39fa005e32","status":"Succeeded","startTime":"2020-07-08T12:45:48.9329763Z","endTime":"2020-07-08T12:45:54.1132797Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '570' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:09:14 GMT + - Wed, 08 Jul 2020 12:46:21 GMT expires: - '-1' pragma: @@ -1079,8 +638,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1098,7 +657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:09:15 GMT + - Wed, 08 Jul 2020 12:46:21 GMT expires: - '-1' pragma: @@ -1130,8 +689,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1139,16 +698,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:09:16 GMT + - Wed, 08 Jul 2020 12:46:22 GMT expires: - '-1' pragma: @@ -1174,8 +734,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1187,17 +747,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/042cdb17-7f03-4f97-9d8b-be7bd4906169?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:09:46 GMT + - Wed, 08 Jul 2020 12:46:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/042cdb17-7f03-4f97-9d8b-be7bd4906169?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1225,24 +785,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/042cdb17-7f03-4f97-9d8b-be7bd4906169?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b8b3b974-c5dd-4127-8b1d-d1dd60e77094","name":"b8b3b974-c5dd-4127-8b1d-d1dd60e77094","status":"Succeeded","startTime":"2020-05-27T13:09:46.6398139Z","endTime":"2020-05-27T13:09:47.0617056Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/042cdb17-7f03-4f97-9d8b-be7bd4906169","name":"042cdb17-7f03-4f97-9d8b-be7bd4906169","status":"Succeeded","startTime":"2020-07-08T12:46:34.5002232Z","endTime":"2020-07-08T12:46:35.4407941Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:10:18 GMT + - Wed, 08 Jul 2020 12:47:07 GMT expires: - '-1' pragma: @@ -1276,8 +836,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1289,7 +849,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:10:28 GMT + - Wed, 08 Jul 2020 12:47:18 GMT expires: - '-1' pragma: @@ -1315,8 +875,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1328,7 +888,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:10:39 GMT + - Wed, 08 Jul 2020 12:47:28 GMT expires: - '-1' pragma: @@ -1354,8 +914,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1367,7 +927,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:10:51 GMT + - Wed, 08 Jul 2020 12:47:39 GMT expires: - '-1' pragma: @@ -1393,8 +953,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1406,7 +966,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:11:02 GMT + - Wed, 08 Jul 2020 12:47:49 GMT expires: - '-1' pragma: @@ -1430,8 +990,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1439,16 +999,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:11:13 GMT + - Wed, 08 Jul 2020 12:48:00 GMT expires: - '-1' pragma: @@ -1474,8 +1035,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1487,17 +1048,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e4bc743e-f837-4b90-9f79-6b76957e8fb3?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:11:15 GMT + - Wed, 08 Jul 2020 12:48:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e4bc743e-f837-4b90-9f79-6b76957e8fb3?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1525,24 +1086,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e4bc743e-f837-4b90-9f79-6b76957e8fb3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80f74a7a-73d1-40bf-9b93-e62842cc4151","name":"80f74a7a-73d1-40bf-9b93-e62842cc4151","status":"Succeeded","startTime":"2020-05-27T13:11:16.3822671Z","endTime":"2020-05-27T13:11:16.5385029Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e4bc743e-f837-4b90-9f79-6b76957e8fb3","name":"e4bc743e-f837-4b90-9f79-6b76957e8fb3","status":"Succeeded","startTime":"2020-07-08T12:48:02.6831798Z","endTime":"2020-07-08T12:48:03.5738512Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:03 GMT + - Wed, 08 Jul 2020 12:48:34 GMT expires: - '-1' pragma: @@ -1574,8 +1135,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1583,16 +1144,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:06 GMT + - Wed, 08 Jul 2020 12:48:36 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml index 94b969c3eb19..5ee9334b28e7 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A12%3A18.4225245Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A48%3A47.8648272Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9302c785-67a5-44a0-971e-5f02adea11b7?api-version=2019-11-01 cache-control: - no-cache content-length: - - '375' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:19 GMT + - Wed, 08 Jul 2020 12:48:49 GMT etag: - - W/"datetime'2020-05-27T13%3A12%3A18.4225245Z'" + - W/"datetime'2020-07-08T12%3A48%3A47.8648272Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9302c785-67a5-44a0-971e-5f02adea11b7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/031331f0-3281-4883-8f78-24ff6210cdd0","name":"031331f0-3281-4883-8f78-24ff6210cdd0","status":"Succeeded","startTime":"2020-05-27T13:12:18.327369Z","endTime":"2020-05-27T13:12:18.499249Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9302c785-67a5-44a0-971e-5f02adea11b7","name":"9302c785-67a5-44a0-971e-5f02adea11b7","status":"Succeeded","startTime":"2020-07-08T12:48:47.360734Z","endTime":"2020-07-08T12:48:48.6732594Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '508' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:50 GMT + - Wed, 08 Jul 2020 12:49:21 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A12%3A18.4915897Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A48%3A48.5664936Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:51 GMT + - Wed, 08 Jul 2020 12:49:21 GMT etag: - - W/"datetime'2020-05-27T13%3A12%3A18.4915897Z'" + - W/"datetime'2020-07-08T12%3A48%3A48.5664936Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A12%3A55.3305335Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A49%3A31.2411541Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d392228-48bd-4191-8135-4bd362793453?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:12:56 GMT + - Wed, 08 Jul 2020 12:49:32 GMT etag: - - W/"datetime'2020-05-27T13%3A12%3A55.3305335Z'" + - W/"datetime'2020-07-08T12%3A49%3A31.2411541Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d392228-48bd-4191-8135-4bd362793453?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d","name":"53ba0e4c-c7e7-44dd-b0a7-b039d1b0d25d","status":"Succeeded","startTime":"2020-05-27T13:12:55.2728138Z","endTime":"2020-05-27T13:13:14.5890584Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d392228-48bd-4191-8135-4bd362793453","name":"0d392228-48bd-4191-8135-4bd362793453","status":"Succeeded","startTime":"2020-07-08T12:49:30.8149461Z","endTime":"2020-07-08T12:49:32.4867975Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:13:27 GMT + - Wed, 08 Jul 2020 12:50:04 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A13%3A14.5777743Z''\"","location":"eastus","properties":{"poolId":"86abb96f-8db2-e877-393d-15f1f86be65e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A49%3A32.3712306Z''\"","location":"westus2stage","properties":{"poolId":"ce0e7315-38e7-d500-71c3-43350663dbc0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:13:47 GMT + - Wed, 08 Jul 2020 12:50:05 GMT etag: - - W/"datetime'2020-05-27T13%3A13%3A14.5777743Z'" + - W/"datetime'2020-07-08T12%3A49%3A32.3712306Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -328,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A14%3A24.023019Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A50%3A20.9925578Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d39dd439-58b8-447d-b04f-04458537c99b?api-version=2019-11-01 cache-control: - no-cache content-length: - - '763' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:14:25 GMT + - Wed, 08 Jul 2020 12:50:21 GMT etag: - - W/"datetime'2020-05-27T13%3A14%3A24.023019Z'" + - W/"datetime'2020-07-08T12%3A50%3A20.9925578Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d39dd439-58b8-447d-b04f-04458537c99b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d39dd439-58b8-447d-b04f-04458537c99b","name":"d39dd439-58b8-447d-b04f-04458537c99b","status":"Succeeded","startTime":"2020-07-08T12:50:20.4174818Z","endTime":"2020-07-08T12:50:47.3441895Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '559' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:14:57 GMT + - Wed, 08 Jul 2020 12:50:53 GMT expires: - '-1' pragma: @@ -434,418 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:15:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:15:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:16:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:17:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:17:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:18:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Creating","startTime":"2020-05-27T13:14:23.969099Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:18:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/51513161-1e91-4c70-8101-796c8a43774d","name":"51513161-1e91-4c70-8101-796c8a43774d","status":"Succeeded","startTime":"2020-05-27T13:14:23.969099Z","endTime":"2020-05-27T13:18:43.333262Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:19:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A18%3A43.3233641Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_3fdc2a8a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A50%3A47.1755054Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","fileSystemId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:19:33 GMT + - Wed, 08 Jul 2020 12:50:54 GMT etag: - - W/"datetime'2020-05-27T13%3A18%3A43.3233641Z'" + - W/"datetime'2020-07-08T12%3A50%3A47.1755054Z'" expires: - '-1' pragma: @@ -877,28 +485,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A18%3A43.3233641Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8ee99555-775a-1a0a-2c6a-4dd5135c624b","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_3fdc2a8a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A50%3A47.1755054Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","fileSystemId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"455a85f8-7cea-f9a1-3d4d-8a3f795a939d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:19:36 GMT + - Wed, 08 Jul 2020 12:50:55 GMT etag: - - W/"datetime'2020-05-27T13%3A18%3A43.3233641Z'" + - W/"datetime'2020-07-08T12%3A50%3A47.1755054Z'" expires: - '-1' pragma: @@ -932,8 +540,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -945,17 +553,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b89178f4-1126-4eaf-9eb8-17e6bd2ce816?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:19:38 GMT + - Wed, 08 Jul 2020 12:50:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b89178f4-1126-4eaf-9eb8-17e6bd2ce816?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -983,24 +591,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b89178f4-1126-4eaf-9eb8-17e6bd2ce816?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b89178f4-1126-4eaf-9eb8-17e6bd2ce816","name":"b89178f4-1126-4eaf-9eb8-17e6bd2ce816","status":"Succeeded","startTime":"2020-07-08T12:50:57.4282065Z","endTime":"2020-07-08T12:51:02.1018034Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '560' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:20:10 GMT + - Wed, 08 Jul 2020 12:51:29 GMT expires: - '-1' pragma: @@ -1032,155 +640,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:20:41 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Deleting","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:21:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6f4df195-3cbe-4aca-ab5f-8aa275f8c592","name":"6f4df195-3cbe-4aca-ab5f-8aa275f8c592","status":"Succeeded","startTime":"2020-05-27T13:19:38.0806865Z","endTime":"2020-05-27T13:21:28.8189846Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:21:42 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1188,16 +649,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:25:03 GMT + - Wed, 08 Jul 2020 12:54:51 GMT expires: - '-1' pragma: @@ -1223,8 +685,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1236,17 +698,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00271acb-ab9e-4192-a5d6-d4769048706f?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:25:15 GMT + - Wed, 08 Jul 2020 12:55:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00271acb-ab9e-4192-a5d6-d4769048706f?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1274,24 +736,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00271acb-ab9e-4192-a5d6-d4769048706f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bb880c39-d2a0-494b-99b3-fbc74e58601e","name":"bb880c39-d2a0-494b-99b3-fbc74e58601e","status":"Succeeded","startTime":"2020-05-27T13:25:15.9419964Z","endTime":"2020-05-27T13:25:16.4564153Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00271acb-ab9e-4192-a5d6-d4769048706f","name":"00271acb-ab9e-4192-a5d6-d4769048706f","status":"Succeeded","startTime":"2020-07-08T12:55:05.1075471Z","endTime":"2020-07-08T12:55:05.9826171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:25:47 GMT + - Wed, 08 Jul 2020 12:55:37 GMT expires: - '-1' pragma: @@ -1325,8 +787,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1338,7 +800,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:25:58 GMT + - Wed, 08 Jul 2020 12:55:48 GMT expires: - '-1' pragma: @@ -1364,8 +826,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1377,7 +839,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:26:08 GMT + - Wed, 08 Jul 2020 12:55:58 GMT expires: - '-1' pragma: @@ -1403,8 +865,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1416,7 +878,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:26:18 GMT + - Wed, 08 Jul 2020 12:56:09 GMT expires: - '-1' pragma: @@ -1442,8 +904,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1455,7 +917,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:26:29 GMT + - Wed, 08 Jul 2020 12:56:19 GMT expires: - '-1' pragma: @@ -1479,8 +941,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1488,16 +950,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:26:39 GMT + - Wed, 08 Jul 2020 12:56:30 GMT expires: - '-1' pragma: @@ -1523,8 +986,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1536,17 +999,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8af6da31-6adf-4017-a44e-6094d263d33a?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:26:42 GMT + - Wed, 08 Jul 2020 12:56:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8af6da31-6adf-4017-a44e-6094d263d33a?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1574,24 +1037,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8af6da31-6adf-4017-a44e-6094d263d33a?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/50d75e0f-b1a7-4661-be05-3b0e2be8a035","name":"50d75e0f-b1a7-4661-be05-3b0e2be8a035","status":"Succeeded","startTime":"2020-05-27T13:26:42.5287168Z","endTime":"2020-05-27T13:27:01.6434651Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8af6da31-6adf-4017-a44e-6094d263d33a","name":"8af6da31-6adf-4017-a44e-6094d263d33a","status":"Succeeded","startTime":"2020-07-08T12:56:33.559885Z","endTime":"2020-07-08T12:56:34.5185474Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:27:14 GMT + - Wed, 08 Jul 2020 12:57:05 GMT expires: - '-1' pragma: @@ -1623,42 +1086,36 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource with identifier - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - is not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '239' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:27:17 GMT + - Wed, 08 Jul 2020 12:57:08 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml index cac2810e6f3f..91b9d74018cb 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A27%3A27.527291Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A57%3A19.451507Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d34f13a9-2d86-44de-af36-10ee46081d3f?api-version=2019-11-01 cache-control: - no-cache content-length: - - '373' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:27:29 GMT + - Wed, 08 Jul 2020 12:57:20 GMT etag: - - W/"datetime'2020-05-27T13%3A27%3A27.527291Z'" + - W/"datetime'2020-07-08T12%3A57%3A19.451507Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d34f13a9-2d86-44de-af36-10ee46081d3f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f21667a5-bf85-4f19-90c2-b097032e7b7b","name":"f21667a5-bf85-4f19-90c2-b097032e7b7b","status":"Succeeded","startTime":"2020-05-27T13:27:27.4677822Z","endTime":"2020-05-27T13:27:27.5927804Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d34f13a9-2d86-44de-af36-10ee46081d3f","name":"d34f13a9-2d86-44de-af36-10ee46081d3f","status":"Succeeded","startTime":"2020-07-08T12:57:19.0113795Z","endTime":"2020-07-08T12:57:20.217935Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:02 GMT + - Wed, 08 Jul 2020 12:57:52 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A27%3A27.595356Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T12%3A57%3A20.1161364Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '374' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:02 GMT + - Wed, 08 Jul 2020 12:57:53 GMT etag: - - W/"datetime'2020-05-27T13%3A27%3A27.595356Z'" + - W/"datetime'2020-07-08T12%3A57%3A20.1161364Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A28%3A06.1971764Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A58%3A02.2420002Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a9581f3-319d-41e8-84d2-f8184269774d?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:06 GMT + - Wed, 08 Jul 2020 12:58:03 GMT etag: - - W/"datetime'2020-05-27T13%3A28%3A06.1971764Z'" + - W/"datetime'2020-07-08T12%3A58%3A02.2420002Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a9581f3-319d-41e8-84d2-f8184269774d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/86ce77ac-9869-4bcc-8a16-94e772978624","name":"86ce77ac-9869-4bcc-8a16-94e772978624","status":"Succeeded","startTime":"2020-05-27T13:28:06.1357507Z","endTime":"2020-05-27T13:28:06.5420122Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5a9581f3-319d-41e8-84d2-f8184269774d","name":"5a9581f3-319d-41e8-84d2-f8184269774d","status":"Succeeded","startTime":"2020-07-08T12:58:01.7406028Z","endTime":"2020-07-08T12:58:03.5062477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:38 GMT + - Wed, 08 Jul 2020 12:58:34 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A28%3A06.5425057Z''\"","location":"eastus","properties":{"poolId":"15360574-8211-c61e-41ef-9fa2e8cd9cae","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T12%3A58%3A03.4141087Z''\"","location":"westus2stage","properties":{"poolId":"90dace93-73ab-3c14-8f0f-8c8341495d0a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:39 GMT + - Wed, 08 Jul 2020 12:58:35 GMT etag: - - W/"datetime'2020-05-27T13%3A28%3A06.5425057Z'" + - W/"datetime'2020-07-08T12%3A58%3A03.4141087Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -328,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A28%3A53.8176029Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A58%3A53.5924873Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d1e328d9-bbaf-4cee-afcc-cea8d2ab2e84?api-version=2019-11-01 cache-control: - no-cache content-length: - - '764' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:28:54 GMT + - Wed, 08 Jul 2020 12:58:54 GMT etag: - - W/"datetime'2020-05-27T13%3A28%3A53.8176029Z'" + - W/"datetime'2020-07-08T12%3A58%3A53.5924873Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d1e328d9-bbaf-4cee-afcc-cea8d2ab2e84?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d1e328d9-bbaf-4cee-afcc-cea8d2ab2e84","name":"d1e328d9-bbaf-4cee-afcc-cea8d2ab2e84","status":"Succeeded","startTime":"2020-07-08T12:58:53.1505329Z","endTime":"2020-07-08T12:59:16.7594322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '560' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:29:27 GMT + - Wed, 08 Jul 2020 12:59:26 GMT expires: - '-1' pragma: @@ -434,614 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:29:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:30:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:30:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:31:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:31:58 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:32:29 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:32:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:33:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:34:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:34:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Creating","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:35:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/05f659ec-8673-4a17-a771-8e89ff91ea15","name":"05f659ec-8673-4a17-a771-8e89ff91ea15","status":"Succeeded","startTime":"2020-05-27T13:28:53.7608392Z","endTime":"2020-05-27T13:35:05.7824856Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:35:36 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A05.7775941Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A59%3A16.5843741Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","fileSystemId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:35:36 GMT + - Wed, 08 Jul 2020 12:59:27 GMT etag: - - W/"datetime'2020-05-27T13%3A35%3A05.7775941Z'" + - W/"datetime'2020-07-08T12%3A59%3A16.5843741Z'" expires: - '-1' pragma: @@ -1064,7 +476,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-2", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-2", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -1075,34 +487,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A46.79472Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A59%3A32.7294946Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e824e427-c70e-4a7f-9ced-13b86e3e205f?api-version=2019-11-01 cache-control: - no-cache content-length: - - '762' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:35:48 GMT + - Wed, 08 Jul 2020 12:59:32 GMT etag: - - W/"datetime'2020-05-27T13%3A35%3A46.79472Z'" + - W/"datetime'2020-07-08T12%3A59%3A32.7294946Z'" expires: - '-1' pragma: @@ -1116,7 +528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -1132,73 +544,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445","name":"90266bc8-5d72-48d2-8295-e5f97d8fa445","status":"Creating","startTime":"2020-05-27T13:35:46.7209036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:36:20 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e824e427-c70e-4a7f-9ced-13b86e3e205f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/90266bc8-5d72-48d2-8295-e5f97d8fa445","name":"90266bc8-5d72-48d2-8295-e5f97d8fa445","status":"Succeeded","startTime":"2020-05-27T13:35:46.7209036Z","endTime":"2020-05-27T13:36:42.3497892Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e824e427-c70e-4a7f-9ced-13b86e3e205f","name":"e824e427-c70e-4a7f-9ced-13b86e3e205f","status":"Succeeded","startTime":"2020-07-08T12:59:32.3025133Z","endTime":"2020-07-08T12:59:58.2438362Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:36:50 GMT + - Wed, 08 Jul 2020 13:00:05 GMT expires: - '-1' pragma: @@ -1230,26 +593,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A36%3A42.3466577Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"a5d344a8-8df7-5e15-4821-a55090123e0c","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A59%3A58.0758763Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","fileSystemId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:36:51 GMT + - Wed, 08 Jul 2020 13:00:06 GMT etag: - - W/"datetime'2020-05-27T13%3A36%3A42.3466577Z'" + - W/"datetime'2020-07-08T12%3A59%3A58.0758763Z'" expires: - '-1' pragma: @@ -1281,26 +644,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A35%3A05.7775941Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8a96425f-c003-dc4a-14c0-6f25cc7e639d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A36%3A42.3466577Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"a5d344a8-8df7-5e15-4821-a55090123e0c","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"a5d344a8-8df7-5e15-4821-a55090123e0c","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_8f8da0b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A59%3A16.5843741Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","fileSystemId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"4faaf32d-2d28-e2fc-18eb-90eb65613b44","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T12%3A59%3A58.0758763Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","fileSystemId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"cec3e60d-8b43-7071-d1d7-8ba6846a5b32","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2713' + - '2725' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:36:52 GMT + - Wed, 08 Jul 2020 13:00:07 GMT expires: - '-1' pragma: @@ -1334,8 +697,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1347,17 +710,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0312270-80e8-4f03-abc3-8cc28179198d?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:36:53 GMT + - Wed, 08 Jul 2020 13:00:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0312270-80e8-4f03-abc3-8cc28179198d?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1369,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14999' x-powered-by: - ASP.NET status: @@ -1385,73 +748,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e","name":"2e8bcc16-50d6-40f2-9ede-234acbcfb85e","status":"Deleting","startTime":"2020-05-27T13:36:54.3265375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:37:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0312270-80e8-4f03-abc3-8cc28179198d?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2e8bcc16-50d6-40f2-9ede-234acbcfb85e","name":"2e8bcc16-50d6-40f2-9ede-234acbcfb85e","status":"Succeeded","startTime":"2020-05-27T13:36:54.3265375Z","endTime":"2020-05-27T13:37:40.9679949Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0312270-80e8-4f03-abc3-8cc28179198d","name":"b0312270-80e8-4f03-abc3-8cc28179198d","status":"Succeeded","startTime":"2020-07-08T13:00:08.9814457Z","endTime":"2020-07-08T13:00:13.7076143Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:37:56 GMT + - Wed, 08 Jul 2020 13:00:40 GMT expires: - '-1' pragma: @@ -1485,8 +799,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1498,17 +812,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91bf3eca-9035-432c-a084-4135fb97d133?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:37:59 GMT + - Wed, 08 Jul 2020 13:00:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91bf3eca-9035-432c-a084-4135fb97d133?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1520,7 +834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14998' x-powered-by: - ASP.NET status: @@ -1536,122 +850,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Deleting","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:38:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Deleting","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:39:02 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91bf3eca-9035-432c-a084-4135fb97d133?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bf3898bb-03f5-4792-94e1-91459a81b331","name":"bf3898bb-03f5-4792-94e1-91459a81b331","status":"Succeeded","startTime":"2020-05-27T13:37:59.7870934Z","endTime":"2020-05-27T13:39:30.4451737Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91bf3eca-9035-432c-a084-4135fb97d133","name":"91bf3eca-9035-432c-a084-4135fb97d133","status":"Succeeded","startTime":"2020-07-08T13:00:43.0237448Z","endTime":"2020-07-08T13:00:48.0823887Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:39:32 GMT + - Wed, 08 Jul 2020 13:01:15 GMT expires: - '-1' pragma: @@ -1683,8 +899,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1692,16 +908,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:42:54 GMT + - Wed, 08 Jul 2020 13:04:36 GMT expires: - '-1' pragma: @@ -1725,8 +942,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1734,16 +951,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:46:15 GMT + - Wed, 08 Jul 2020 13:07:58 GMT expires: - '-1' pragma: @@ -1769,8 +987,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1782,17 +1000,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba58af79-b964-4955-bfe6-0044e83f6808?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:46:28 GMT + - Wed, 08 Jul 2020 13:08:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba58af79-b964-4955-bfe6-0044e83f6808?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1820,24 +1038,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba58af79-b964-4955-bfe6-0044e83f6808?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fd264807-f315-4ac1-9f58-c4bdc9fd6f6f","name":"fd264807-f315-4ac1-9f58-c4bdc9fd6f6f","status":"Succeeded","startTime":"2020-05-27T13:46:28.3940342Z","endTime":"2020-05-27T13:46:31.2389088Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba58af79-b964-4955-bfe6-0044e83f6808","name":"ba58af79-b964-4955-bfe6-0044e83f6808","status":"Succeeded","startTime":"2020-07-08T13:08:11.2696883Z","endTime":"2020-07-08T13:08:12.1291107Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:46:59 GMT + - Wed, 08 Jul 2020 13:08:43 GMT expires: - '-1' pragma: @@ -1871,8 +1089,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1884,7 +1102,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:47:10 GMT + - Wed, 08 Jul 2020 13:08:53 GMT expires: - '-1' pragma: @@ -1910,8 +1128,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1923,7 +1141,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:47:22 GMT + - Wed, 08 Jul 2020 13:09:04 GMT expires: - '-1' pragma: @@ -1949,8 +1167,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1962,7 +1180,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:47:34 GMT + - Wed, 08 Jul 2020 13:09:15 GMT expires: - '-1' pragma: @@ -1988,8 +1206,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -2001,7 +1219,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 13:47:53 GMT + - Wed, 08 Jul 2020 13:09:25 GMT expires: - '-1' pragma: @@ -2025,8 +1243,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -2034,16 +1252,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:48:04 GMT + - Wed, 08 Jul 2020 13:09:37 GMT expires: - '-1' pragma: @@ -2069,8 +1288,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -2082,17 +1301,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/56b0ed94-11ea-45d1-b262-4a1ff197fa02?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:48:05 GMT + - Wed, 08 Jul 2020 13:09:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/56b0ed94-11ea-45d1-b262-4a1ff197fa02?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2120,24 +1339,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/56b0ed94-11ea-45d1-b262-4a1ff197fa02?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ebaced3d-3350-4030-9790-358a54c244cc","name":"ebaced3d-3350-4030-9790-358a54c244cc","status":"Succeeded","startTime":"2020-05-27T13:48:06.1190295Z","endTime":"2020-05-27T13:48:06.3221611Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/56b0ed94-11ea-45d1-b262-4a1ff197fa02","name":"56b0ed94-11ea-45d1-b262-4a1ff197fa02","status":"Succeeded","startTime":"2020-07-08T13:09:39.5846709Z","endTime":"2020-07-08T13:09:40.5571326Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:48:37 GMT + - Wed, 08 Jul 2020 13:10:12 GMT expires: - '-1' pragma: @@ -2169,8 +1388,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -2178,16 +1397,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:48:39 GMT + - Wed, 08 Jul 2020 13:10:14 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml index ed2a2339f004..82d74cfc9b45 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A48%3A51.0738202Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A10%3A41.83933Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0f19180-d0e9-49c7-b870-d2816569efa3?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '378' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:48:52 GMT + - Wed, 08 Jul 2020 13:10:42 GMT etag: - - W/"datetime'2020-05-27T13%3A48%3A51.0738202Z'" + - W/"datetime'2020-07-08T13%3A10%3A41.83933Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0f19180-d0e9-49c7-b870-d2816569efa3?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f326b2ed-d173-48aa-8eb5-09007ed07304","name":"f326b2ed-d173-48aa-8eb5-09007ed07304","status":"Succeeded","startTime":"2020-05-27T13:48:51.004397Z","endTime":"2020-05-27T13:48:51.1293659Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0f19180-d0e9-49c7-b870-d2816569efa3","name":"c0f19180-d0e9-49c7-b870-d2816569efa3","status":"Succeeded","startTime":"2020-07-08T13:10:41.4311007Z","endTime":"2020-07-08T13:10:42.618689Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:49:23 GMT + - Wed, 08 Jul 2020 13:11:14 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T13%3A48%3A51.1468921Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A10%3A42.5109629Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '375' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:49:26 GMT + - Wed, 08 Jul 2020 13:11:15 GMT etag: - - W/"datetime'2020-05-27T13%3A48%3A51.1468921Z'" + - W/"datetime'2020-07-08T13%3A10%3A42.5109629Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A49%3A30.5124396Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A11%3A25.1176627Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8dcdbf-54ac-4bf6-8d7c-d8177ae3f515?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:49:32 GMT + - Wed, 08 Jul 2020 13:11:26 GMT etag: - - W/"datetime'2020-05-27T13%3A49%3A30.5124396Z'" + - W/"datetime'2020-07-08T13%3A11%3A25.1176627Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8dcdbf-54ac-4bf6-8d7c-d8177ae3f515?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/453fc6f5-3735-4588-81eb-5220daf59d70","name":"453fc6f5-3735-4588-81eb-5220daf59d70","status":"Succeeded","startTime":"2020-05-27T13:49:30.3882751Z","endTime":"2020-05-27T13:49:30.7788843Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad8dcdbf-54ac-4bf6-8d7c-d8177ae3f515","name":"ad8dcdbf-54ac-4bf6-8d7c-d8177ae3f515","status":"Succeeded","startTime":"2020-07-08T13:11:24.6809271Z","endTime":"2020-07-08T13:11:26.2122827Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:50:04 GMT + - Wed, 08 Jul 2020 13:11:58 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T13%3A49%3A30.7957102Z''\"","location":"eastus","properties":{"poolId":"a049018e-1e9c-764e-1cf1-13ff0cafe34e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A11%3A26.1005805Z''\"","location":"westus2stage","properties":{"poolId":"8d13db87-8ef0-8d24-d280-8b7000a70cc1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:50:05 GMT + - Wed, 08 Jul 2020 13:11:58 GMT etag: - - W/"datetime'2020-05-27T13%3A49%3A30.7957102Z'" + - W/"datetime'2020-07-08T13%3A11%3A26.1005805Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -328,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A50%3A18.5332487Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A12%3A14.5327807Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0654f34f-6b92-40eb-ae80-cfe47e9b1b68?api-version=2019-11-01 cache-control: - no-cache content-length: - - '764' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:50:19 GMT + - Wed, 08 Jul 2020 13:12:15 GMT etag: - - W/"datetime'2020-05-27T13%3A50%3A18.5332487Z'" + - W/"datetime'2020-07-08T13%3A12%3A14.5327807Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0654f34f-6b92-40eb-ae80-cfe47e9b1b68?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0654f34f-6b92-40eb-ae80-cfe47e9b1b68","name":"0654f34f-6b92-40eb-ae80-cfe47e9b1b68","status":"Succeeded","startTime":"2020-07-08T13:12:14.1007443Z","endTime":"2020-07-08T13:12:37.870829Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '560' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:50:52 GMT + - Wed, 08 Jul 2020 13:12:48 GMT expires: - '-1' pragma: @@ -434,369 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:51:22 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:51:53 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:52:24 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:52:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:53:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Creating","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:53:56 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/99a44842-304d-4615-ab07-dac0166824b6","name":"99a44842-304d-4615-ab07-dac0166824b6","status":"Succeeded","startTime":"2020-05-27T13:50:18.4215349Z","endTime":"2020-05-27T13:54:16.6398995Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:54:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A54%3A16.6553129Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b7b9181e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A12%3A37.5702809Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","fileSystemId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:54:27 GMT + - Wed, 08 Jul 2020 13:12:49 GMT etag: - - W/"datetime'2020-05-27T13%3A54%3A16.6553129Z'" + - W/"datetime'2020-07-08T13%3A12%3A37.5702809Z'" expires: - '-1' pragma: @@ -832,28 +489,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T13%3A54%3A32.2151542Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"16b63e8e-c203-3d8e-1c6c-e4f1de0f2cda","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b7b9181e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A12%3A51.1849876Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","fileSystemId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"18ffc417-4876-2964-6b39-7f00de9b8c0d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:54:39 GMT + - Wed, 08 Jul 2020 13:12:55 GMT etag: - - W/"datetime'2020-05-27T13%3A54%3A32.2151542Z'" + - W/"datetime'2020-07-08T13%3A12%3A51.1849876Z'" expires: - '-1' pragma: @@ -871,7 +528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -889,8 +546,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -902,17 +559,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/703ed4e5-fc9b-49a7-84b8-4a1140d19881?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:54:41 GMT + - Wed, 08 Jul 2020 13:12:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/703ed4e5-fc9b-49a7-84b8-4a1140d19881?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -924,7 +581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -940,122 +597,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Deleting","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:55:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Deleting","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 13:55:43 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/703ed4e5-fc9b-49a7-84b8-4a1140d19881?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d1877b43-0c95-445d-9b14-3d36a0f1b1ae","name":"d1877b43-0c95-445d-9b14-3d36a0f1b1ae","status":"Succeeded","startTime":"2020-05-27T13:54:41.9569578Z","endTime":"2020-05-27T13:55:55.9196462Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/703ed4e5-fc9b-49a7-84b8-4a1140d19881","name":"703ed4e5-fc9b-49a7-84b8-4a1140d19881","status":"Succeeded","startTime":"2020-07-08T13:12:57.508934Z","endTime":"2020-07-08T13:13:02.1748916Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:56:13 GMT + - Wed, 08 Jul 2020 13:13:29 GMT expires: - '-1' pragma: @@ -1087,8 +646,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1096,16 +655,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 13:59:35 GMT + - Wed, 08 Jul 2020 13:16:51 GMT expires: - '-1' pragma: @@ -1131,8 +691,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1144,17 +704,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11b520c5-9030-4f42-8af5-22d8f0ddf0ee?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 13:59:47 GMT + - Wed, 08 Jul 2020 13:17:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11b520c5-9030-4f42-8af5-22d8f0ddf0ee?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1182,24 +742,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11b520c5-9030-4f42-8af5-22d8f0ddf0ee?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/46937acc-fbc8-41ce-97db-dd24f00eb5cf","name":"46937acc-fbc8-41ce-97db-dd24f00eb5cf","status":"Succeeded","startTime":"2020-05-27T13:59:48.0649058Z","endTime":"2020-05-27T13:59:48.5180899Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11b520c5-9030-4f42-8af5-22d8f0ddf0ee","name":"11b520c5-9030-4f42-8af5-22d8f0ddf0ee","status":"Succeeded","startTime":"2020-07-08T13:17:05.0188899Z","endTime":"2020-07-08T13:17:05.8158075Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:00:19 GMT + - Wed, 08 Jul 2020 13:17:36 GMT expires: - '-1' pragma: @@ -1233,8 +793,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1246,7 +806,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:00:30 GMT + - Wed, 08 Jul 2020 13:17:47 GMT expires: - '-1' pragma: @@ -1272,8 +832,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1285,7 +845,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:00:40 GMT + - Wed, 08 Jul 2020 13:17:57 GMT expires: - '-1' pragma: @@ -1311,8 +871,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1324,7 +884,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:00:51 GMT + - Wed, 08 Jul 2020 13:18:08 GMT expires: - '-1' pragma: @@ -1350,8 +910,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1363,7 +923,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:01:02 GMT + - Wed, 08 Jul 2020 13:18:19 GMT expires: - '-1' pragma: @@ -1387,8 +947,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1396,16 +956,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:01:12 GMT + - Wed, 08 Jul 2020 13:18:30 GMT expires: - '-1' pragma: @@ -1431,8 +992,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1444,17 +1005,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c952339e-8d7c-4d9e-8291-29ea75519e49?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 14:01:15 GMT + - Wed, 08 Jul 2020 13:18:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c952339e-8d7c-4d9e-8291-29ea75519e49?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1482,24 +1043,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c952339e-8d7c-4d9e-8291-29ea75519e49?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/68195ab8-6083-4b95-934c-68e0b9acc571","name":"68195ab8-6083-4b95-934c-68e0b9acc571","status":"Succeeded","startTime":"2020-05-27T14:01:15.8858856Z","endTime":"2020-05-27T14:01:16.2608585Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c952339e-8d7c-4d9e-8291-29ea75519e49","name":"c952339e-8d7c-4d9e-8291-29ea75519e49","status":"Succeeded","startTime":"2020-07-08T13:18:32.8293944Z","endTime":"2020-07-08T13:18:33.9545028Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:01:47 GMT + - Wed, 08 Jul 2020 13:19:05 GMT expires: - '-1' pragma: @@ -1531,8 +1092,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1540,16 +1101,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:01:49 GMT + - Wed, 08 Jul 2020 13:19:07 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml index b27ddae7e353..eb09b4615fe1 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -9,34 +9,34 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '28' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T14%3A01%3A59.6159583Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A19%3A18.862636Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc2f6c6f-6654-4422-8b98-90dcd768dcf6?api-version=2019-11-01 cache-control: - no-cache content-length: - - '374' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:02:00 GMT + - Wed, 08 Jul 2020 13:19:19 GMT etag: - - W/"datetime'2020-05-27T14%3A01%3A59.6159583Z'" + - W/"datetime'2020-07-08T13%3A19%3A18.862636Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc2f6c6f-6654-4422-8b98-90dcd768dcf6?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/3e1994ca-77a1-48c6-9d10-d9b1027876f4","name":"3e1994ca-77a1-48c6-9d10-d9b1027876f4","status":"Succeeded","startTime":"2020-05-27T14:01:59.5771278Z","endTime":"2020-05-27T14:01:59.7021601Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc2f6c6f-6654-4422-8b98-90dcd768dcf6","name":"bc2f6c6f-6654-4422-8b98-90dcd768dcf6","status":"Succeeded","startTime":"2020-07-08T13:19:18.4350908Z","endTime":"2020-07-08T13:19:19.6929019Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '510' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:02:33 GMT + - Wed, 08 Jul 2020 13:19:51 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-27T14%3A01%3A59.705044Z''\"","location":"eastus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A19%3A19.5362688Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '374' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:02:33 GMT + - Wed, 08 Jul 2020 13:19:52 GMT etag: - - W/"datetime'2020-05-27T14%3A01%3A59.705044Z'" + - W/"datetime'2020-07-08T13%3A19%3A19.5362688Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -167,36 +167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '94' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: - - eastus + - westus2stage method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T14%3A02%3A38.1717413Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A20%3A00.7149557Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d07b430e-a5a2-41d6-bd30-6fcae617c490?api-version=2019-11-01 cache-control: - no-cache content-length: - - '460' + - '466' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:02:39 GMT + - Wed, 08 Jul 2020 13:20:01 GMT etag: - - W/"datetime'2020-05-27T14%3A02%3A38.1717413Z'" + - W/"datetime'2020-07-08T13%3A20%3A00.7149557Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d07b430e-a5a2-41d6-bd30-6fcae617c490?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab1dfd74-9090-4400-837f-b14621638747","name":"ab1dfd74-9090-4400-837f-b14621638747","status":"Succeeded","startTime":"2020-05-27T14:02:37.9969683Z","endTime":"2020-05-27T14:02:38.4969758Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d07b430e-a5a2-41d6-bd30-6fcae617c490","name":"d07b430e-a5a2-41d6-bd30-6fcae617c490","status":"Succeeded","startTime":"2020-07-08T13:20:00.3016433Z","endTime":"2020-07-08T13:20:01.8173474Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:03:10 GMT + - Wed, 08 Jul 2020 13:20:33 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-27T14%3A02%3A38.5000546Z''\"","location":"eastus","properties":{"poolId":"f36a5af3-f2f9-10a8-a62c-2367fa96f435","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A20%3A01.7178982Z''\"","location":"westus2stage","properties":{"poolId":"d2342985-aa90-0cdd-0959-18a8d7529bd4","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:03:10 GMT + - Wed, 08 Jul 2020 13:20:34 GMT etag: - - W/"datetime'2020-05-27T14%3A02%3A38.5000546Z'" + - W/"datetime'2020-07-08T13%3A20%3A01.7178982Z'" expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: @@ -328,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '350' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A03%3A25.0894973Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A20%3A50.2655154Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11fc68da-2ea5-4a8a-8d6d-de9b24868ba5?api-version=2019-11-01 cache-control: - no-cache content-length: - - '764' + - '770' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:03:25 GMT + - Wed, 08 Jul 2020 13:20:51 GMT etag: - - W/"datetime'2020-05-27T14%3A03%3A25.0894973Z'" + - W/"datetime'2020-07-08T13%3A20%3A50.2655154Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11fc68da-2ea5-4a8a-8d6d-de9b24868ba5?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/11fc68da-2ea5-4a8a-8d6d-de9b24868ba5","name":"11fc68da-2ea5-4a8a-8d6d-de9b24868ba5","status":"Succeeded","startTime":"2020-07-08T13:20:49.6709358Z","endTime":"2020-07-08T13:21:17.9920829Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '560' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:03:58 GMT + - Wed, 08 Jul 2020 13:21:23 GMT expires: - '-1' pragma: @@ -434,369 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:04:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:04:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:05:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:06:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:06:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Creating","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:07:02 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bfffe6f5-a2c1-4229-9826-c08900b7b3ef","name":"bfffe6f5-a2c1-4229-9826-c08900b7b3ef","status":"Succeeded","startTime":"2020-05-27T14:03:25.0423035Z","endTime":"2020-05-27T14:07:16.6653431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:07:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A07%3A16.6621611Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Succeeded","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A21%3A17.8213987Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8920c0fb-ce80-349d-78f8-7e96869882b4","fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Succeeded","fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1350' + - '1356' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:07:33 GMT + - Wed, 08 Jul 2020 13:21:24 GMT etag: - - W/"datetime'2020-05-27T14%3A07%3A16.6621611Z'" + - W/"datetime'2020-07-08T13%3A21%3A17.8213987Z'" expires: - '-1' pragma: @@ -819,7 +476,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"creationToken": "sdk-py-tests-vol-1", + body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\''''' headers: Accept: @@ -829,34 +486,34 @@ interactions: Connection: - keep-alive Content-Length: - - '316' + - '322' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A07%3A41.304664Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"provisioningState":"Updating","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A21%3A26.4314779Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8920c0fb-ce80-349d-78f8-7e96869882b4","fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"provisioningState":"Updating","fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/10f4d1b9-d120-4781-bf3a-b4e35e9a6d13?api-version=2019-11-01 cache-control: - no-cache content-length: - - '1348' + - '1355' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:07:41 GMT + - Wed, 08 Jul 2020 13:21:26 GMT etag: - - W/"datetime'2020-05-27T14%3A07%3A41.304664Z'" + - W/"datetime'2020-07-08T13%3A21%3A26.4314779Z'" expires: - '-1' pragma: @@ -874,7 +531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -890,24 +547,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/10f4d1b9-d120-4781-bf3a-b4e35e9a6d13?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a635b905-d5c3-4d0d-abee-7406a1278c07","name":"a635b905-d5c3-4d0d-abee-7406a1278c07","status":"Succeeded","startTime":"2020-05-27T14:07:41.2660327Z","endTime":"2020-05-27T14:08:01.2880044Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/10f4d1b9-d120-4781-bf3a-b4e35e9a6d13","name":"10f4d1b9-d120-4781-bf3a-b4e35e9a6d13","status":"Succeeded","startTime":"2020-07-08T13:21:26.0104314Z","endTime":"2020-07-08T13:21:30.6591671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:08:13 GMT + - Wed, 08 Jul 2020 13:21:58 GMT expires: - '-1' pragma: @@ -939,26 +596,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-27T14%3A08%3A01.2777157Z''\"","location":"eastus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.5"}],"fileSystemId":"99fa5c01-45d8-4d48-0a0c-b7c924e59bea","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_6eaf3ac7796611eaabddda649d9a0383_b00a3575","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A21%3A30.4752772Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"8920c0fb-ce80-349d-78f8-7e96869882b4","fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.4"}],"fileSystemId":"8920c0fb-ce80-349d-78f8-7e96869882b4","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2fb395ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1336' + - '1342' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:08:14 GMT + - Wed, 08 Jul 2020 13:21:59 GMT etag: - - W/"datetime'2020-05-27T14%3A08%3A01.2777157Z'" + - W/"datetime'2020-07-08T13%3A21%3A30.4752772Z'" expires: - '-1' pragma: @@ -992,8 +649,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1005,17 +662,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c69689c-b48e-46ef-a9f6-886417093bcd?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 14:08:15 GMT + - Wed, 08 Jul 2020 13:22:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c69689c-b48e-46ef-a9f6-886417093bcd?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1043,122 +700,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Deleting","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:08:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Deleting","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 May 2020 14:09:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c69689c-b48e-46ef-a9f6-886417093bcd?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7477d338-3523-4b40-ae7e-5b4f376f2bfe","name":"7477d338-3523-4b40-ae7e-5b4f376f2bfe","status":"Succeeded","startTime":"2020-05-27T14:08:15.5484523Z","endTime":"2020-05-27T14:09:26.0586379Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c69689c-b48e-46ef-a9f6-886417093bcd","name":"6c69689c-b48e-46ef-a9f6-886417093bcd","status":"Succeeded","startTime":"2020-07-08T13:22:01.8601749Z","endTime":"2020-07-08T13:22:08.0198249Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:09:53 GMT + - Wed, 08 Jul 2020 13:22:33 GMT expires: - '-1' pragma: @@ -1190,8 +749,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1199,16 +758,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '231' + - '299' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:13:14 GMT + - Wed, 08 Jul 2020 13:25:55 GMT expires: - '-1' pragma: @@ -1234,8 +794,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1247,17 +807,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64f0aa8c-d9f9-44ab-b95a-49b2a12b974b?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 14:13:27 GMT + - Wed, 08 Jul 2020 13:26:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64f0aa8c-d9f9-44ab-b95a-49b2a12b974b?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1285,24 +845,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64f0aa8c-d9f9-44ab-b95a-49b2a12b974b?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d58dff68-6e62-4e88-8552-5ecd17a079a6","name":"d58dff68-6e62-4e88-8552-5ecd17a079a6","status":"Succeeded","startTime":"2020-05-27T14:13:27.9687527Z","endTime":"2020-05-27T14:13:28.4062587Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64f0aa8c-d9f9-44ab-b95a-49b2a12b974b","name":"64f0aa8c-d9f9-44ab-b95a-49b2a12b974b","status":"Succeeded","startTime":"2020-07-08T13:26:08.9101759Z","endTime":"2020-07-08T13:26:09.8641367Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '544' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:13:59 GMT + - Wed, 08 Jul 2020 13:26:41 GMT expires: - '-1' pragma: @@ -1336,8 +896,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1349,7 +909,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:14:10 GMT + - Wed, 08 Jul 2020 13:26:51 GMT expires: - '-1' pragma: @@ -1375,8 +935,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1388,7 +948,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:14:20 GMT + - Wed, 08 Jul 2020 13:27:02 GMT expires: - '-1' pragma: @@ -1414,8 +974,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1427,7 +987,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:14:31 GMT + - Wed, 08 Jul 2020 13:27:12 GMT expires: - '-1' pragma: @@ -1453,8 +1013,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1466,7 +1026,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 May 2020 14:14:41 GMT + - Wed, 08 Jul 2020 13:27:23 GMT expires: - '-1' pragma: @@ -1490,8 +1050,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1499,16 +1059,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '204' + - '272' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:14:54 GMT + - Wed, 08 Jul 2020 13:27:33 GMT expires: - '-1' pragma: @@ -1534,8 +1095,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1547,17 +1108,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a7a3b73b-364b-4e76-b20a-cde41dc714a4?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 May 2020 14:14:56 GMT + - Wed, 08 Jul 2020 13:27:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a7a3b73b-364b-4e76-b20a-cde41dc714a4?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1585,24 +1146,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a7a3b73b-364b-4e76-b20a-cde41dc714a4?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/df5a7a58-90ed-456b-a485-53727a862a56","name":"df5a7a58-90ed-456b-a485-53727a862a56","status":"Succeeded","startTime":"2020-05-27T14:14:56.6534349Z","endTime":"2020-05-27T14:14:56.809687Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a7a3b73b-364b-4e76-b20a-cde41dc714a4","name":"a7a3b73b-364b-4e76-b20a-cde41dc714a4","status":"Succeeded","startTime":"2020-07-08T13:27:36.7426748Z","endTime":"2020-07-08T13:27:37.6714179Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '509' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:15:28 GMT + - Wed, 08 Jul 2020 13:28:08 GMT expires: - '-1' pragma: @@ -1634,8 +1195,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-netapp/0.10.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1643,16 +1204,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-net-test-qa2'' was not found."}}' + under resource group ''sdk-net-test-qa2'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '170' + - '238' content-type: - application/json; charset=utf-8 date: - - Wed, 27 May 2020 14:15:31 GMT + - Wed, 08 Jul 2020 13:28:11 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml index 7283185c1760..75a0ba2ceac4 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml @@ -13,20 +13,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-14T16%3A36%3A57.6617459Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A28%3A20.3121546Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7f687d75-1a9d-4ff7-9a9c-26c98c068cde?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/febf02c1-43bc-49e3-92a9-50bc4f805050?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -34,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:36:58 GMT + - Wed, 08 Jul 2020 13:28:21 GMT etag: - - W/"datetime'2020-01-14T16%3A36%3A57.6617459Z'" + - W/"datetime'2020-07-08T13%3A28%3A20.3121546Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7f687d75-1a9d-4ff7-9a9c-26c98c068cde?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/febf02c1-43bc-49e3-92a9-50bc4f805050?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7f687d75-1a9d-4ff7-9a9c-26c98c068cde","name":"7f687d75-1a9d-4ff7-9a9c-26c98c068cde","status":"Succeeded","startTime":"2020-01-14T16:36:57.1743592Z","endTime":"2020-01-14T16:36:58.5024877Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/febf02c1-43bc-49e3-92a9-50bc4f805050","name":"febf02c1-43bc-49e3-92a9-50bc4f805050","status":"Succeeded","startTime":"2020-07-08T13:28:19.8415112Z","endTime":"2020-07-08T13:28:21.107232Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '512' + - '511' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:37:29 GMT + - Wed, 08 Jul 2020 13:28:53 GMT expires: - '-1' pragma: @@ -115,13 +115,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-14T16%3A36%3A58.3994445Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A28%3A21.0097977Z''\"","location":"westus2stage","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:37:30 GMT + - Wed, 08 Jul 2020 13:28:54 GMT etag: - - W/"datetime'2020-01-14T16%3A36%3A58.3994445Z'" + - W/"datetime'2020-07-08T13%3A28%3A21.0097977Z'" expires: - '-1' pragma: @@ -171,8 +171,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: @@ -181,12 +181,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-14T16%3A37%3A33.7999861Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A29%3A03.0306931Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c394bfb-a3b4-44f6-9e3f-a767531e3b0b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcd4d60b-c463-473f-b97b-8b3c3ed58919?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -194,9 +194,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:37:34 GMT + - Wed, 08 Jul 2020 13:29:03 GMT etag: - - W/"datetime'2020-01-14T16%3A37%3A33.7999861Z'" + - W/"datetime'2020-07-08T13%3A29%3A03.0306931Z'" expires: - '-1' pragma: @@ -226,13 +226,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c394bfb-a3b4-44f6-9e3f-a767531e3b0b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcd4d60b-c463-473f-b97b-8b3c3ed58919?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c394bfb-a3b4-44f6-9e3f-a767531e3b0b","name":"1c394bfb-a3b4-44f6-9e3f-a767531e3b0b","status":"Succeeded","startTime":"2020-01-14T16:37:33.2816267Z","endTime":"2020-01-14T16:37:34.7521616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcd4d60b-c463-473f-b97b-8b3c3ed58919","name":"dcd4d60b-c463-473f-b97b-8b3c3ed58919","status":"Succeeded","startTime":"2020-07-08T13:29:02.5683502Z","endTime":"2020-07-08T13:29:04.2105363Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:05 GMT + - Wed, 08 Jul 2020 13:29:35 GMT expires: - '-1' pragma: @@ -275,13 +275,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-14T16%3A37%3A34.5777217Z''\"","location":"westus2stage","properties":{"poolId":"01771377-0316-5b43-d1a9-4d83bf8bdd86","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A29%3A04.1056904Z''\"","location":"westus2stage","properties":{"poolId":"1e8dfbeb-cb52-92bc-5691-0b45f06d4f17","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -292,9 +292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:06 GMT + - Wed, 08 Jul 2020 13:29:35 GMT etag: - - W/"datetime'2020-01-14T16%3A37%3A34.5777217Z'" + - W/"datetime'2020-07-08T13%3A29%3A04.1056904Z'" expires: - '-1' pragma: @@ -332,20 +332,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A38%3A20.4551895Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A29%3A51.4346361Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0cffce7-7c76-4ead-97f0-0cfd2d5b4890?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b5d586c-874e-4bf7-b5b9-5acfc2f2a71a?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -353,9 +353,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:20 GMT + - Wed, 08 Jul 2020 13:29:52 GMT etag: - - W/"datetime'2020-01-14T16%3A38%3A20.4551895Z'" + - W/"datetime'2020-07-08T13%3A29%3A51.4346361Z'" expires: - '-1' pragma: @@ -385,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0cffce7-7c76-4ead-97f0-0cfd2d5b4890?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b5d586c-874e-4bf7-b5b9-5acfc2f2a71a?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0cffce7-7c76-4ead-97f0-0cfd2d5b4890","name":"e0cffce7-7c76-4ead-97f0-0cfd2d5b4890","status":"Succeeded","startTime":"2020-01-14T16:38:19.989755Z","endTime":"2020-01-14T16:38:32.5386813Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b5d586c-874e-4bf7-b5b9-5acfc2f2a71a","name":"0b5d586c-874e-4bf7-b5b9-5acfc2f2a71a","status":"Succeeded","startTime":"2020-07-08T13:29:50.9588918Z","endTime":"2020-07-08T13:30:17.0168804Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:53 GMT + - Wed, 08 Jul 2020 13:30:23 GMT expires: - '-1' pragma: @@ -434,26 +434,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A38%3A32.4235274Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A30%3A16.8443493Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"provisioningState":"Succeeded","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1370' + - '1345' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:54 GMT + - Wed, 08 Jul 2020 13:30:24 GMT etag: - - W/"datetime'2020-01-14T16%3A38%3A32.4235274Z'" + - W/"datetime'2020-07-08T13%3A30%3A16.8443493Z'" expires: - '-1' pragma: @@ -485,28 +485,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A38%3A32.4235274Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A30%3A16.8443493Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"provisioningState":"Succeeded","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1370' + - '1345' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:38:59 GMT + - Wed, 08 Jul 2020 13:30:30 GMT etag: - - W/"datetime'2020-01-14T16%3A38%3A32.4235274Z'" + - W/"datetime'2020-07-08T13%3A30%3A16.8443493Z'" expires: - '-1' pragma: @@ -542,30 +542,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-14T16%3A39%3A02.4319077Z''\"","location":"southcentralusstage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A30%3A36.094666Z''\"","location":"southcentralusstage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d0a63e3-1c20-4b65-be5f-f2ad957e5d93?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5b2b93b3-e0d6-4400-bfc7-d901a95f51cc?api-version=2019-11-01 cache-control: - no-cache content-length: - - '385' + - '384' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:39:01 GMT + - Wed, 08 Jul 2020 13:30:36 GMT etag: - - W/"datetime'2020-01-14T16%3A39%3A02.4319077Z'" + - W/"datetime'2020-07-08T13%3A30%3A36.094666Z'" expires: - '-1' pragma: @@ -595,13 +595,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d0a63e3-1c20-4b65-be5f-f2ad957e5d93?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5b2b93b3-e0d6-4400-bfc7-d901a95f51cc?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d0a63e3-1c20-4b65-be5f-f2ad957e5d93","name":"5d0a63e3-1c20-4b65-be5f-f2ad957e5d93","status":"Succeeded","startTime":"2020-01-14T16:39:02.2594562Z","endTime":"2020-01-14T16:39:02.5719836Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5b2b93b3-e0d6-4400-bfc7-d901a95f51cc","name":"5b2b93b3-e0d6-4400-bfc7-d901a95f51cc","status":"Succeeded","startTime":"2020-07-08T13:30:36.0460196Z","endTime":"2020-07-08T13:30:36.1553963Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context @@ -612,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:39:37 GMT + - Wed, 08 Jul 2020 13:31:08 GMT expires: - '-1' pragma: @@ -644,13 +644,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-01-14T16%3A39%3A02.5700073Z''\"","location":"southcentralusstage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-07-08T13%3A30%3A36.1547055Z''\"","location":"southcentralusstage","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -661,9 +661,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:39:38 GMT + - Wed, 08 Jul 2020 13:31:08 GMT etag: - - W/"datetime'2020-01-14T16%3A39%3A02.5700073Z'" + - W/"datetime'2020-07-08T13%3A30%3A36.1547055Z'" expires: - '-1' pragma: @@ -700,8 +700,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US location: @@ -710,12 +710,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-14T16%3A39%3A52.1986106Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A31%3A11.5404799Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/139c0c64-faa5-44b9-8383-c598e4079741?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3073bced-5d3e-462d-90da-b93e3bc253f2?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -723,9 +723,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:39:52 GMT + - Wed, 08 Jul 2020 13:31:11 GMT etag: - - W/"datetime'2020-01-14T16%3A39%3A52.1986106Z'" + - W/"datetime'2020-07-08T13%3A31%3A11.5404799Z'" expires: - '-1' pragma: @@ -755,13 +755,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/139c0c64-faa5-44b9-8383-c598e4079741?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3073bced-5d3e-462d-90da-b93e3bc253f2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/139c0c64-faa5-44b9-8383-c598e4079741","name":"139c0c64-faa5-44b9-8383-c598e4079741","status":"Succeeded","startTime":"2020-01-14T16:39:52.0688239Z","endTime":"2020-01-14T16:39:52.3813562Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3073bced-5d3e-462d-90da-b93e3bc253f2","name":"3073bced-5d3e-462d-90da-b93e3bc253f2","status":"Succeeded","startTime":"2020-07-08T13:31:11.5028175Z","endTime":"2020-07-08T13:31:11.9559144Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context @@ -772,7 +772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:40:23 GMT + - Wed, 08 Jul 2020 13:31:44 GMT expires: - '-1' pragma: @@ -804,13 +804,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-01-14T16%3A39%3A52.3897481Z''\"","location":"southcentralusstage","properties":{"poolId":"99ac093d-14c2-907c-0447-5bb0ac6b31a3","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-07-08T13%3A31%3A11.9467529Z''\"","location":"southcentralusstage","properties":{"poolId":"7da20dd4-01db-09d8-561f-77aa53f3a0e6","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -821,9 +821,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:40:23 GMT + - Wed, 08 Jul 2020 13:31:44 GMT etag: - - W/"datetime'2020-01-14T16%3A39%3A52.3897481Z'" + - W/"datetime'2020-07-08T13%3A31%3A11.9467529Z'" expires: - '-1' pragma: @@ -863,20 +863,20 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A40%3A37.0457293Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A31%3A56.5267011Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a848a50e-d4c4-42b8-b3c7-2b530ea27c23?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2aec5b15-c6dc-4b67-8556-0aecba29ad61?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -884,9 +884,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:40:37 GMT + - Wed, 08 Jul 2020 13:31:56 GMT etag: - - W/"datetime'2020-01-14T16%3A40%3A37.0457293Z'" + - W/"datetime'2020-07-08T13%3A31%3A56.5267011Z'" expires: - '-1' pragma: @@ -916,13 +916,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a848a50e-d4c4-42b8-b3c7-2b530ea27c23?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2aec5b15-c6dc-4b67-8556-0aecba29ad61?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a848a50e-d4c4-42b8-b3c7-2b530ea27c23","name":"a848a50e-d4c4-42b8-b3c7-2b530ea27c23","status":"Succeeded","startTime":"2020-01-14T16:40:36.8875122Z","endTime":"2020-01-14T16:40:49.2674737Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2aec5b15-c6dc-4b67-8556-0aecba29ad61","name":"2aec5b15-c6dc-4b67-8556-0aecba29ad61","status":"Succeeded","startTime":"2020-07-08T13:31:56.4859657Z","endTime":"2020-07-08T13:32:22.7733758Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context @@ -933,7 +933,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:08 GMT + - Wed, 08 Jul 2020 13:32:28 GMT expires: - '-1' pragma: @@ -965,26 +965,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A40%3A49.2624522Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"5120e25b-80c6-6edf-f008-ba632a1dfbf5","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A32%3A22.7733326Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1659' + - '1729' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:09 GMT + - Wed, 08 Jul 2020 13:32:29 GMT etag: - - W/"datetime'2020-01-14T16%3A40%3A49.2624522Z'" + - W/"datetime'2020-07-08T13%3A32%3A22.7733326Z'" expires: - '-1' pragma: @@ -1020,8 +1020,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1033,17 +1033,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6117d8fd-eb68-4b4f-8070-421f47ec6c78?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f38b509-c071-4d7a-921a-ec6f8e802a47?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:41:41 GMT + - Wed, 08 Jul 2020 13:33:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6117d8fd-eb68-4b4f-8070-421f47ec6c78?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f38b509-c071-4d7a-921a-ec6f8e802a47?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1071,28 +1071,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A41%3A41.8161276Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A03.0084257Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"provisioningState":"AuthorizeReplication","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1370' + - '1356' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:41 GMT + - Wed, 08 Jul 2020 13:33:03 GMT etag: - - W/"datetime'2020-01-14T16%3A41%3A41.8161276Z'" + - W/"datetime'2020-07-08T13%3A33%3A03.0084257Z'" expires: - '-1' pragma: @@ -1124,28 +1124,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A40%3A49.2624522Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"5120e25b-80c6-6edf-f008-ba632a1dfbf5","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A32%3A22.7733326Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1659' + - '1729' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:42 GMT + - Wed, 08 Jul 2020 13:33:04 GMT etag: - - W/"datetime'2020-01-14T16%3A40%3A49.2624522Z'" + - W/"datetime'2020-07-08T13%3A32%3A22.7733326Z'" expires: - '-1' pragma: @@ -1177,26 +1177,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A03.0084257Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"provisioningState":"AuthorizeReplication","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1356' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:43 GMT + - Wed, 08 Jul 2020 13:33:06 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A03.0084257Z'" expires: - '-1' pragma: @@ -1228,26 +1230,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A05.9863645Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"ActivateReplication"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1739' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:44 GMT + - Wed, 08 Jul 2020 13:33:06 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A05.9863645Z'" expires: - '-1' pragma: @@ -1279,26 +1283,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A03.0084257Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"provisioningState":"AuthorizeReplication","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1356' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:46 GMT + - Wed, 08 Jul 2020 13:33:08 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A03.0084257Z'" expires: - '-1' pragma: @@ -1330,26 +1336,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A05.9863645Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"ActivateReplication"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1739' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:49 GMT + - Wed, 08 Jul 2020 13:33:08 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A05.9863645Z'" expires: - '-1' pragma: @@ -1381,26 +1389,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A09.5995773Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1675' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:51 GMT + - Wed, 08 Jul 2020 13:33:10 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A09.5995773Z'" expires: - '-1' pragma: @@ -1432,26 +1442,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A10.8446292Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"076e0076-72e3-d60e-8a94-ab794a672969","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '1820' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:53 GMT + - Wed, 08 Jul 2020 13:33:11 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A10.8446292Z'" expires: - '-1' pragma: @@ -1483,26 +1495,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:54 GMT + - Wed, 08 Jul 2020 13:33:11 GMT expires: - '-1' pragma: @@ -1534,26 +1546,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:57 GMT + - Wed, 08 Jul 2020 13:33:13 GMT expires: - '-1' pragma: @@ -1585,26 +1597,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:41:59 GMT + - Wed, 08 Jul 2020 13:33:14 GMT expires: - '-1' pragma: @@ -1636,26 +1648,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:01 GMT + - Wed, 08 Jul 2020 13:33:16 GMT expires: - '-1' pragma: @@ -1687,26 +1699,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:02 GMT + - Wed, 08 Jul 2020 13:33:17 GMT expires: - '-1' pragma: @@ -1738,26 +1750,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:04 GMT + - Wed, 08 Jul 2020 13:33:19 GMT expires: - '-1' pragma: @@ -1789,26 +1801,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:05 GMT + - Wed, 08 Jul 2020 13:33:20 GMT expires: - '-1' pragma: @@ -1840,26 +1852,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:07 GMT + - Wed, 08 Jul 2020 13:33:22 GMT expires: - '-1' pragma: @@ -1891,26 +1903,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:09 GMT + - Wed, 08 Jul 2020 13:33:23 GMT expires: - '-1' pragma: @@ -1942,26 +1954,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:11 GMT + - Wed, 08 Jul 2020 13:33:25 GMT expires: - '-1' pragma: @@ -1993,26 +2005,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:13 GMT + - Wed, 08 Jul 2020 13:33:26 GMT expires: - '-1' pragma: @@ -2044,26 +2056,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:15 GMT + - Wed, 08 Jul 2020 13:33:28 GMT expires: - '-1' pragma: @@ -2095,26 +2107,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:17 GMT + - Wed, 08 Jul 2020 13:33:29 GMT expires: - '-1' pragma: @@ -2146,26 +2158,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:19 GMT + - Wed, 08 Jul 2020 13:33:31 GMT expires: - '-1' pragma: @@ -2197,26 +2209,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:20 GMT + - Wed, 08 Jul 2020 13:33:33 GMT expires: - '-1' pragma: @@ -2248,26 +2260,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:22 GMT + - Wed, 08 Jul 2020 13:33:34 GMT expires: - '-1' pragma: @@ -2299,26 +2311,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:24 GMT + - Wed, 08 Jul 2020 13:33:35 GMT expires: - '-1' pragma: @@ -2350,26 +2362,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:26 GMT + - Wed, 08 Jul 2020 13:33:37 GMT expires: - '-1' pragma: @@ -2401,26 +2413,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:28 GMT + - Wed, 08 Jul 2020 13:33:38 GMT expires: - '-1' pragma: @@ -2452,26 +2464,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:30 GMT + - Wed, 08 Jul 2020 13:33:40 GMT expires: - '-1' pragma: @@ -2503,26 +2515,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:31 GMT + - Wed, 08 Jul 2020 13:33:42 GMT expires: - '-1' pragma: @@ -2554,26 +2566,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:33 GMT + - Wed, 08 Jul 2020 13:33:43 GMT expires: - '-1' pragma: @@ -2605,26 +2617,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:35 GMT + - Wed, 08 Jul 2020 13:33:44 GMT expires: - '-1' pragma: @@ -2656,26 +2668,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:37 GMT + - Wed, 08 Jul 2020 13:33:46 GMT expires: - '-1' pragma: @@ -2707,26 +2719,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:39 GMT + - Wed, 08 Jul 2020 13:33:47 GMT expires: - '-1' pragma: @@ -2758,26 +2770,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:41 GMT + - Wed, 08 Jul 2020 13:33:49 GMT expires: - '-1' pragma: @@ -2809,26 +2821,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:43 GMT + - Wed, 08 Jul 2020 13:33:50 GMT expires: - '-1' pragma: @@ -2860,26 +2872,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:45 GMT + - Wed, 08 Jul 2020 13:33:52 GMT expires: - '-1' pragma: @@ -2911,26 +2923,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:47 GMT + - Wed, 08 Jul 2020 13:33:54 GMT expires: - '-1' pragma: @@ -2962,26 +2974,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:49 GMT + - Wed, 08 Jul 2020 13:33:55 GMT expires: - '-1' pragma: @@ -3013,26 +3025,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:52 GMT + - Wed, 08 Jul 2020 13:33:56 GMT expires: - '-1' pragma: @@ -3064,26 +3076,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:53 GMT + - Wed, 08 Jul 2020 13:33:58 GMT expires: - '-1' pragma: @@ -3115,26 +3127,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:55 GMT + - Wed, 08 Jul 2020 13:33:59 GMT expires: - '-1' pragma: @@ -3166,26 +3178,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:56 GMT + - Wed, 08 Jul 2020 13:34:01 GMT expires: - '-1' pragma: @@ -3217,26 +3229,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:42:58 GMT + - Wed, 08 Jul 2020 13:34:03 GMT expires: - '-1' pragma: @@ -3268,26 +3280,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:00 GMT + - Wed, 08 Jul 2020 13:34:05 GMT expires: - '-1' pragma: @@ -3319,26 +3331,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:02 GMT + - Wed, 08 Jul 2020 13:34:06 GMT expires: - '-1' pragma: @@ -3370,26 +3382,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:04 GMT + - Wed, 08 Jul 2020 13:34:08 GMT expires: - '-1' pragma: @@ -3421,26 +3433,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:06 GMT + - Wed, 08 Jul 2020 13:34:09 GMT expires: - '-1' pragma: @@ -3472,26 +3484,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:07 GMT + - Wed, 08 Jul 2020 13:34:11 GMT expires: - '-1' pragma: @@ -3523,26 +3535,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:09 GMT + - Wed, 08 Jul 2020 13:34:12 GMT expires: - '-1' pragma: @@ -3574,26 +3586,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:11 GMT + - Wed, 08 Jul 2020 13:34:14 GMT expires: - '-1' pragma: @@ -3625,26 +3637,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:13 GMT + - Wed, 08 Jul 2020 13:34:15 GMT expires: - '-1' pragma: @@ -3676,26 +3688,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:15 GMT + - Wed, 08 Jul 2020 13:34:17 GMT expires: - '-1' pragma: @@ -3727,26 +3739,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:17 GMT + - Wed, 08 Jul 2020 13:34:18 GMT expires: - '-1' pragma: @@ -3778,26 +3790,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:19 GMT + - Wed, 08 Jul 2020 13:34:20 GMT expires: - '-1' pragma: @@ -3829,26 +3841,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:21 GMT + - Wed, 08 Jul 2020 13:34:21 GMT expires: - '-1' pragma: @@ -3880,26 +3892,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:23 GMT + - Wed, 08 Jul 2020 13:34:23 GMT expires: - '-1' pragma: @@ -3931,26 +3943,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:25 GMT + - Wed, 08 Jul 2020 13:34:24 GMT expires: - '-1' pragma: @@ -3982,26 +3994,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:29 GMT + - Wed, 08 Jul 2020 13:34:26 GMT expires: - '-1' pragma: @@ -4033,26 +4045,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:30 GMT + - Wed, 08 Jul 2020 13:34:27 GMT expires: - '-1' pragma: @@ -4084,26 +4096,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:32 GMT + - Wed, 08 Jul 2020 13:34:29 GMT expires: - '-1' pragma: @@ -4135,26 +4147,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:34 GMT + - Wed, 08 Jul 2020 13:34:30 GMT expires: - '-1' pragma: @@ -4186,26 +4198,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:35 GMT + - Wed, 08 Jul 2020 13:34:32 GMT expires: - '-1' pragma: @@ -4237,26 +4249,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:37 GMT + - Wed, 08 Jul 2020 13:34:33 GMT expires: - '-1' pragma: @@ -4288,26 +4300,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:38 GMT + - Wed, 08 Jul 2020 13:34:35 GMT expires: - '-1' pragma: @@ -4339,26 +4351,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:41 GMT + - Wed, 08 Jul 2020 13:34:36 GMT expires: - '-1' pragma: @@ -4390,26 +4402,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:43 GMT + - Wed, 08 Jul 2020 13:34:38 GMT expires: - '-1' pragma: @@ -4441,26 +4453,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:44 GMT + - Wed, 08 Jul 2020 13:34:39 GMT expires: - '-1' pragma: @@ -4492,26 +4504,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:45 GMT + - Wed, 08 Jul 2020 13:34:41 GMT expires: - '-1' pragma: @@ -4543,26 +4555,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:47 GMT + - Wed, 08 Jul 2020 13:34:42 GMT expires: - '-1' pragma: @@ -4594,26 +4606,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:49 GMT + - Wed, 08 Jul 2020 13:34:44 GMT expires: - '-1' pragma: @@ -4645,26 +4657,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:50 GMT + - Wed, 08 Jul 2020 13:34:45 GMT expires: - '-1' pragma: @@ -4696,26 +4708,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:52 GMT + - Wed, 08 Jul 2020 13:34:47 GMT expires: - '-1' pragma: @@ -4747,26 +4759,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:53 GMT + - Wed, 08 Jul 2020 13:34:48 GMT expires: - '-1' pragma: @@ -4798,26 +4810,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:55 GMT + - Wed, 08 Jul 2020 13:34:50 GMT expires: - '-1' pragma: @@ -4849,26 +4861,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:56 GMT + - Wed, 08 Jul 2020 13:34:51 GMT expires: - '-1' pragma: @@ -4900,26 +4912,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:58 GMT + - Wed, 08 Jul 2020 13:34:53 GMT expires: - '-1' pragma: @@ -4951,26 +4963,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:43:59 GMT + - Wed, 08 Jul 2020 13:34:54 GMT expires: - '-1' pragma: @@ -5002,26 +5014,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:01 GMT + - Wed, 08 Jul 2020 13:34:56 GMT expires: - '-1' pragma: @@ -5053,26 +5065,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:03 GMT + - Wed, 08 Jul 2020 13:34:58 GMT expires: - '-1' pragma: @@ -5104,26 +5116,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:04 GMT + - Wed, 08 Jul 2020 13:34:59 GMT expires: - '-1' pragma: @@ -5155,26 +5167,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:06 GMT + - Wed, 08 Jul 2020 13:35:00 GMT expires: - '-1' pragma: @@ -5206,26 +5218,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:07 GMT + - Wed, 08 Jul 2020 13:35:02 GMT expires: - '-1' pragma: @@ -5257,26 +5269,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:09 GMT + - Wed, 08 Jul 2020 13:35:03 GMT expires: - '-1' pragma: @@ -5308,26 +5320,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:10 GMT + - Wed, 08 Jul 2020 13:35:05 GMT expires: - '-1' pragma: @@ -5359,26 +5371,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:11 GMT + - Wed, 08 Jul 2020 13:35:07 GMT expires: - '-1' pragma: @@ -5410,26 +5422,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:13 GMT + - Wed, 08 Jul 2020 13:35:08 GMT expires: - '-1' pragma: @@ -5461,26 +5473,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:14 GMT + - Wed, 08 Jul 2020 13:35:09 GMT expires: - '-1' pragma: @@ -5512,26 +5524,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:16 GMT + - Wed, 08 Jul 2020 13:35:11 GMT expires: - '-1' pragma: @@ -5563,26 +5575,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:18 GMT + - Wed, 08 Jul 2020 13:35:12 GMT expires: - '-1' pragma: @@ -5614,26 +5626,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:19 GMT + - Wed, 08 Jul 2020 13:35:14 GMT expires: - '-1' pragma: @@ -5665,26 +5677,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:21 GMT + - Wed, 08 Jul 2020 13:35:15 GMT expires: - '-1' pragma: @@ -5716,26 +5728,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:22 GMT + - Wed, 08 Jul 2020 13:35:17 GMT expires: - '-1' pragma: @@ -5767,26 +5779,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:25 GMT + - Wed, 08 Jul 2020 13:35:19 GMT expires: - '-1' pragma: @@ -5818,26 +5830,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:26 GMT + - Wed, 08 Jul 2020 13:35:20 GMT expires: - '-1' pragma: @@ -5869,26 +5881,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:28 GMT + - Wed, 08 Jul 2020 13:35:21 GMT expires: - '-1' pragma: @@ -5920,26 +5932,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:29 GMT + - Wed, 08 Jul 2020 13:35:23 GMT expires: - '-1' pragma: @@ -5971,26 +5983,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:31 GMT + - Wed, 08 Jul 2020 13:35:24 GMT expires: - '-1' pragma: @@ -6022,26 +6034,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:32 GMT + - Wed, 08 Jul 2020 13:35:26 GMT expires: - '-1' pragma: @@ -6073,26 +6085,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:34 GMT + - Wed, 08 Jul 2020 13:35:28 GMT expires: - '-1' pragma: @@ -6123,33 +6135,29 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2019-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb76d1a0-991c-4a8a-b8a1-7f66d449e3df?api-version=2019-11-01 cache-control: - no-cache content-length: - - '0' + - '111' + content-type: + - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:34 GMT + - Wed, 08 Jul 2020 13:35:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb76d1a0-991c-4a8a-b8a1-7f66d449e3df?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -6158,15 +6166,17 @@ interactions: - Microsoft-IIS/10.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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6177,26 +6187,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:35 GMT + - Wed, 08 Jul 2020 13:35:30 GMT expires: - '-1' pragma: @@ -6228,26 +6238,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:37 GMT + - Wed, 08 Jul 2020 13:35:32 GMT expires: - '-1' pragma: @@ -6279,26 +6289,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:39 GMT + - Wed, 08 Jul 2020 13:35:33 GMT expires: - '-1' pragma: @@ -6330,26 +6340,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:44:41 GMT + - Wed, 08 Jul 2020 13:35:35 GMT expires: - '-1' pragma: @@ -6381,28 +6391,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A41%3A53.5112881Z''\"","location":"westus2stage","properties":{"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1700' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:13 GMT - etag: - - W/"datetime'2020-01-14T16%3A41%3A53.5112881Z'" + - Wed, 08 Jul 2020 13:35:36 GMT expires: - '-1' pragma: @@ -6434,28 +6442,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A44%3A41.4510388Z''\"","location":"southcentralusstage","properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"5120e25b-80c6-6edf-f008-ba632a1dfbf5","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1645' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:13 GMT - etag: - - W/"datetime'2020-01-14T16%3A44%3A41.4510388Z'" + - Wed, 08 Jul 2020 13:35:38 GMT expires: - '-1' pragma: @@ -6486,33 +6492,29 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/resyncReplication?api-version=2019-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/18284885-cb1b-444f-9142-09a448048a06?api-version=2019-11-01 cache-control: - no-cache content-length: - - '0' + - '111' + content-type: + - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:13 GMT + - Wed, 08 Jul 2020 13:35:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/18284885-cb1b-444f-9142-09a448048a06?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -6521,15 +6523,17 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6540,26 +6544,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:14 GMT + - Wed, 08 Jul 2020 13:35:41 GMT expires: - '-1' pragma: @@ -6591,26 +6595,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:15 GMT + - Wed, 08 Jul 2020 13:35:43 GMT expires: - '-1' pragma: @@ -6642,26 +6646,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '114' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:17 GMT + - Wed, 08 Jul 2020 13:35:44 GMT expires: - '-1' pragma: @@ -6692,33 +6696,29 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2019-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a3500cf0-bb19-4366-a937-03fd62a724ff?api-version=2019-11-01 cache-control: - no-cache content-length: - - '0' + - '111' + content-type: + - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:49 GMT + - Wed, 08 Jul 2020 13:35:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a3500cf0-bb19-4366-a937-03fd62a724ff?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -6727,15 +6727,17 @@ interactions: - Microsoft-IIS/10.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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6746,26 +6748,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '114' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:50 GMT + - Wed, 08 Jul 2020 13:35:47 GMT expires: - '-1' pragma: @@ -6797,26 +6799,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '114' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:53 GMT + - Wed, 08 Jul 2020 13:35:49 GMT expires: - '-1' pragma: @@ -6848,26 +6850,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:45:54 GMT + - Wed, 08 Jul 2020 13:35:50 GMT expires: - '-1' pragma: @@ -6898,33 +6900,29 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/deleteReplication?api-version=2019-11-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fc6ecc68-567c-4911-a3eb-81cae5c452b2?api-version=2019-11-01 cache-control: - no-cache content-length: - - '0' + - '111' + content-type: + - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:26 GMT + - Wed, 08 Jul 2020 13:35:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fc6ecc68-567c-4911-a3eb-81cae5c452b2?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -6933,15 +6931,17 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6952,26 +6952,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:26 GMT + - Wed, 08 Jul 2020 13:35:53 GMT expires: - '-1' pragma: @@ -7003,24 +7003,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache + content-length: + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:28 GMT + - Wed, 08 Jul 2020 13:35:55 GMT expires: - '-1' pragma: @@ -7031,13 +7033,17 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -7048,28 +7054,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A29.7940769Z''\"","location":"westus2stage","properties":{"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1700' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:29 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A29.7940769Z'" + - Wed, 08 Jul 2020 13:35:57 GMT expires: - '-1' pragma: @@ -7101,40 +7105,47 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"error":{"code":"BadGatewayConnection","message":"The network connectivity - issue encountered for ''Microsoft.NetApp''; cannot fulfill the request."}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache - connection: - - close content-length: - - '148' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:30 GMT + - Wed, 08 Jul 2020 13:35:58 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - 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: - - service + x-powered-by: + - ASP.NET status: - code: 502 - message: Bad Gateway + code: 200 + message: OK - request: body: null headers: @@ -7145,28 +7156,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A30.3227881Z''\"","location":"southcentralusstage","properties":{"volumeType":"","dataProtection":{},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1253' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:31 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A30.3227881Z'" + - Wed, 08 Jul 2020 13:36:00 GMT expires: - '-1' pragma: @@ -7198,28 +7207,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A29.7940769Z''\"","location":"westus2stage","properties":{"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"10.1.9.5","endIp":"10.1.9.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1700' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:33 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A29.7940769Z'" + - Wed, 08 Jul 2020 13:36:02 GMT expires: - '-1' pragma: @@ -7251,28 +7258,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A30.3227881Z''\"","location":"southcentralusstage","properties":{"volumeType":"","dataProtection":{},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1253' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:33 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A30.3227881Z'" + - Wed, 08 Jul 2020 13:36:03 GMT expires: - '-1' pragma: @@ -7304,28 +7309,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A34.5305675Z''\"","location":"westus2stage","properties":{"volumeType":"","dataProtection":{},"provisioningState":"Succeeded","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_792ecb91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","mountTargets":[{"provisioningState":"","mountTargetId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","fileSystemId":"71f56eb8-183c-27c3-71cd-6fed001a89bd","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.5"}]}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1381' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:35 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A34.5305675Z'" + - Wed, 08 Jul 2020 13:36:04 GMT expires: - '-1' pragma: @@ -7357,28 +7360,5694 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-01-14T16%3A46%3A30.3227881Z''\"","location":"southcentralusstage","properties":{"volumeType":"","dataProtection":{},"fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","fileSystemId":"32a64e1e-b8ba-c320-cc39-fe1492e309f5","startIp":"10.1.23.4","endIp":"10.1.23.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4"}],"provisioningState":"Succeeded"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1253' + - '111' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:46:35 GMT - etag: - - W/"datetime'2020-01-14T16%3A46%3A30.3227881Z'" + - Wed, 08 Jul 2020 13:36:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:39 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:45 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:36:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:28 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:39 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:47 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:37:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2019-11-01 + response: + body: + string: '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c729ea1d-9399-4815-bf26-f902b90f2519?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 08 Jul 2020 13:38:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c729ea1d-9399-4815-bf26-f902b90f2519?api-version=2019-11-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '109' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c729ea1d-9399-4815-bf26-f902b90f2519?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c729ea1d-9399-4815-bf26-f902b90f2519","name":"c729ea1d-9399-4815-bf26-f902b90f2519","status":"Succeeded","startTime":"2020-07-08T13:38:18.0887406Z","endTime":"2020-07-08T13:38:23.3899516Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A33%3A09.5995773Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1675' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:54 GMT + etag: + - W/"datetime'2020-07-08T13%3A33%3A09.5995773Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A38%3A23.3825892Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"","dataProtection":{"replication":{"replicationId":"076e0076-72e3-d60e-8a94-ab794a672969","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1806' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:55 GMT + etag: + - W/"datetime'2020-07-08T13%3A38%3A23.3825892Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/resyncReplication?api-version=2019-11-01 + response: + body: + string: '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c01b1164-bc92-4e34-97d5-d7be7d0c3610?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 08 Jul 2020 13:38:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c01b1164-bc92-4e34-97d5-d7be7d0c3610?api-version=2019-11-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '109' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '109' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:38:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c01b1164-bc92-4e34-97d5-d7be7d0c3610?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c01b1164-bc92-4e34-97d5-d7be7d0c3610","name":"c01b1164-bc92-4e34-97d5-d7be7d0c3610","status":"Succeeded","startTime":"2020-07-08T13:38:56.6835015Z","endTime":"2020-07-08T13:39:00.3129257Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:39:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/breakReplication?api-version=2019-11-01 + response: + body: + string: '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21614a0e-c8fb-41e1-b4c1-6a5ddf996ea9?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 08 Jul 2020 13:39:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21614a0e-c8fb-41e1-b4c1-6a5ddf996ea9?api-version=2019-11-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:39:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:39:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:39:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '109' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:39:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21614a0e-c8fb-41e1-b4c1-6a5ddf996ea9?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21614a0e-c8fb-41e1-b4c1-6a5ddf996ea9","name":"21614a0e-c8fb-41e1-b4c1-6a5ddf996ea9","status":"Succeeded","startTime":"2020-07-08T13:39:30.9810851Z","endTime":"2020-07-08T13:39:37.2380855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '582' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/deleteReplication?api-version=2019-11-01 + response: + body: + string: '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23af43c2-d92e-4606-96ba-ba776a50c701?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 08 Jul 2020 13:40:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23af43c2-d92e-4606-96ba-ba776a50c701?api-version=2019-11-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '109' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"20352","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '116' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2/replicationStatus?api-version=2019-11-01 + response: + body: + string: '{"error":{"code":"VolumeReplicationMissing","message":"Volume Replication + was not found for volume: ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2''"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '308' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A40%3A12.0008757Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4"}],"volumeType":"","dataProtection":{},"provisioningState":"Succeeded","fileSystemId":"cfcfd0b2-5e97-e96f-8bbd-16ab8de82811","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1381' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:12 GMT + etag: + - W/"datetime'2020-07-08T13%3A40%3A12.0008757Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-2/sdk-py-tests-pool-2/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-07-08T13%3A40%3A09.1555044Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"5d475e21-818a-0331-5f83-2f1afe47449d","fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"","dataProtection":{},"fileSystemId":"5d475e21-818a-0331-5f83-2f1afe47449d","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1414' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:13 GMT + etag: + - W/"datetime'2020-07-08T13%3A40%3A09.1555044Z'" expires: - '-1' pragma: @@ -7412,8 +13081,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7425,17 +13094,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/577c807f-242a-4eb0-aef9-d13b1c14b240?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10d50481-bdc9-4ad1-9655-3381180d0db5?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:46:36 GMT + - Wed, 08 Jul 2020 13:40:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/577c807f-242a-4eb0-aef9-d13b1c14b240?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10d50481-bdc9-4ad1-9655-3381180d0db5?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -7463,13 +13132,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/577c807f-242a-4eb0-aef9-d13b1c14b240?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23af43c2-d92e-4606-96ba-ba776a50c701?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/577c807f-242a-4eb0-aef9-d13b1c14b240","name":"577c807f-242a-4eb0-aef9-d13b1c14b240","status":"Succeeded","startTime":"2020-01-14T16:46:36.6407978Z","endTime":"2020-01-14T16:46:40.1417426Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23af43c2-d92e-4606-96ba-ba776a50c701","name":"23af43c2-d92e-4606-96ba-ba776a50c701","status":"Succeeded","startTime":"2020-07-08T13:40:06.5676984Z","endTime":"2020-07-08T13:40:09.1623512Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' headers: access-control-expose-headers: - Request-Context @@ -7480,7 +13149,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:47:07 GMT + - Wed, 08 Jul 2020 13:40:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10d50481-bdc9-4ad1-9655-3381180d0db5?api-version=2019-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10d50481-bdc9-4ad1-9655-3381180d0db5","name":"10d50481-bdc9-4ad1-9655-3381180d0db5","status":"Succeeded","startTime":"2020-07-08T13:40:14.301832Z","endTime":"2020-07-08T13:40:20.6333908Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '581' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jul 2020 13:40:45 GMT expires: - '-1' pragma: @@ -7512,8 +13230,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -7521,16 +13239,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2'' - under resource group ''sdk-test-qa2-R'' was not found."}}' + under resource group ''sdk-test-qa2-R'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '229' + - '297' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:50:29 GMT + - Wed, 08 Jul 2020 13:44:06 GMT expires: - '-1' pragma: @@ -7556,8 +13275,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7569,17 +13288,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2893709e-ebf2-4510-8c77-e4956b461654?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82fa23e1-eb18-4a6e-a971-2795fe0b68e7?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:50:40 GMT + - Wed, 08 Jul 2020 13:44:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2893709e-ebf2-4510-8c77-e4956b461654?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82fa23e1-eb18-4a6e-a971-2795fe0b68e7?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -7607,13 +13326,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2893709e-ebf2-4510-8c77-e4956b461654?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82fa23e1-eb18-4a6e-a971-2795fe0b68e7?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2893709e-ebf2-4510-8c77-e4956b461654","name":"2893709e-ebf2-4510-8c77-e4956b461654","status":"Succeeded","startTime":"2020-01-14T16:50:41.0451241Z","endTime":"2020-01-14T16:50:41.3263406Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82fa23e1-eb18-4a6e-a971-2795fe0b68e7","name":"82fa23e1-eb18-4a6e-a971-2795fe0b68e7","status":"Succeeded","startTime":"2020-07-08T13:44:18.5023464Z","endTime":"2020-07-08T13:44:19.0224047Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context @@ -7624,7 +13343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:51:12 GMT + - Wed, 08 Jul 2020 13:44:49 GMT expires: - '-1' pragma: @@ -7658,8 +13377,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7671,7 +13390,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:51:22 GMT + - Wed, 08 Jul 2020 13:45:00 GMT expires: - '-1' pragma: @@ -7697,8 +13416,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7710,7 +13429,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:51:34 GMT + - Wed, 08 Jul 2020 13:45:11 GMT expires: - '-1' pragma: @@ -7736,8 +13455,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7749,7 +13468,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:51:44 GMT + - Wed, 08 Jul 2020 13:45:21 GMT expires: - '-1' pragma: @@ -7775,8 +13494,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7788,7 +13507,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:51:54 GMT + - Wed, 08 Jul 2020 13:45:32 GMT expires: - '-1' pragma: @@ -7812,8 +13531,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -7821,16 +13540,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2'' - under resource group ''sdk-test-qa2-R'' was not found."}}' + under resource group ''sdk-test-qa2-R'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '202' + - '270' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:52:05 GMT + - Wed, 08 Jul 2020 13:45:42 GMT expires: - '-1' pragma: @@ -7856,8 +13576,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -7869,17 +13589,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb393738-6ca8-4bda-9ab5-7e80122b1790?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6645a9f8-7fc2-4423-ade5-8584c9f5336f?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:52:06 GMT + - Wed, 08 Jul 2020 13:45:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb393738-6ca8-4bda-9ab5-7e80122b1790?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6645a9f8-7fc2-4423-ade5-8584c9f5336f?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -7907,24 +13627,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb393738-6ca8-4bda-9ab5-7e80122b1790?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6645a9f8-7fc2-4423-ade5-8584c9f5336f?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb393738-6ca8-4bda-9ab5-7e80122b1790","name":"eb393738-6ca8-4bda-9ab5-7e80122b1790","status":"Succeeded","startTime":"2020-01-14T16:52:06.2467279Z","endTime":"2020-01-14T16:52:06.4187367Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6645a9f8-7fc2-4423-ade5-8584c9f5336f","name":"6645a9f8-7fc2-4423-ade5-8584c9f5336f","status":"Succeeded","startTime":"2020-07-08T13:45:44.8474888Z","endTime":"2020-07-08T13:45:44.91002Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '519' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:52:37 GMT + - Wed, 08 Jul 2020 13:46:15 GMT expires: - '-1' pragma: @@ -7956,8 +13676,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -7965,16 +13685,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2'' - under resource group ''sdk-test-qa2-R'' was not found."}}' + under resource group ''sdk-test-qa2-R'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '168' + - '236' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:52:39 GMT + - Wed, 08 Jul 2020 13:46:18 GMT expires: - '-1' pragma: @@ -8000,8 +13721,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8013,17 +13734,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1851f031-83f7-4c2f-a1e3-907ef1807150?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd4f79b4-0ac5-423e-99a3-5725c4a01579?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:52:41 GMT + - Wed, 08 Jul 2020 13:46:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1851f031-83f7-4c2f-a1e3-907ef1807150?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd4f79b4-0ac5-423e-99a3-5725c4a01579?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -8051,13 +13772,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1851f031-83f7-4c2f-a1e3-907ef1807150?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd4f79b4-0ac5-423e-99a3-5725c4a01579?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1851f031-83f7-4c2f-a1e3-907ef1807150","name":"1851f031-83f7-4c2f-a1e3-907ef1807150","status":"Succeeded","startTime":"2020-01-14T16:52:41.9850987Z","endTime":"2020-01-14T16:52:46.5677709Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd4f79b4-0ac5-423e-99a3-5725c4a01579","name":"cd4f79b4-0ac5-423e-99a3-5725c4a01579","status":"Succeeded","startTime":"2020-07-08T13:46:21.7594848Z","endTime":"2020-07-08T13:46:29.6856849Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}' headers: access-control-expose-headers: - Request-Context @@ -8068,7 +13789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:53:14 GMT + - Wed, 08 Jul 2020 13:46:53 GMT expires: - '-1' pragma: @@ -8100,8 +13821,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -8109,16 +13830,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - under resource group ''sdk-test-qa2'' was not found."}}' + under resource group ''sdk-test-qa2'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '227' + - '295' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:56:35 GMT + - Wed, 08 Jul 2020 13:50:15 GMT expires: - '-1' pragma: @@ -8144,8 +13866,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8157,17 +13879,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c974671-7715-4815-bf59-262c871b5d2b?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63379948-7670-49b9-9d7c-ac5ce79b3b65?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:56:48 GMT + - Wed, 08 Jul 2020 13:50:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c974671-7715-4815-bf59-262c871b5d2b?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63379948-7670-49b9-9d7c-ac5ce79b3b65?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -8179,7 +13901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -8195,13 +13917,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c974671-7715-4815-bf59-262c871b5d2b?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63379948-7670-49b9-9d7c-ac5ce79b3b65?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c974671-7715-4815-bf59-262c871b5d2b","name":"0c974671-7715-4815-bf59-262c871b5d2b","status":"Succeeded","startTime":"2020-01-14T16:56:48.0740042Z","endTime":"2020-01-14T16:56:48.9177457Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63379948-7670-49b9-9d7c-ac5ce79b3b65","name":"63379948-7670-49b9-9d7c-ac5ce79b3b65","status":"Succeeded","startTime":"2020-07-08T13:50:28.2336911Z","endTime":"2020-07-08T13:50:29.0462013Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}' headers: access-control-expose-headers: - Request-Context @@ -8212,7 +13934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:57:19 GMT + - Wed, 08 Jul 2020 13:50:59 GMT expires: - '-1' pragma: @@ -8246,8 +13968,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8259,7 +13981,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:57:30 GMT + - Wed, 08 Jul 2020 13:51:10 GMT expires: - '-1' pragma: @@ -8269,7 +13991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 204 message: No Content @@ -8285,8 +14007,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8298,7 +14020,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:57:42 GMT + - Wed, 08 Jul 2020 13:51:21 GMT expires: - '-1' pragma: @@ -8308,7 +14030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14997' status: code: 204 message: No Content @@ -8324,8 +14046,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8337,7 +14059,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:57:53 GMT + - Wed, 08 Jul 2020 13:51:31 GMT expires: - '-1' pragma: @@ -8347,7 +14069,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14996' status: code: 204 message: No Content @@ -8363,8 +14085,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8376,7 +14098,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 16:58:03 GMT + - Wed, 08 Jul 2020 13:51:43 GMT expires: - '-1' pragma: @@ -8386,7 +14108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14995' status: code: 204 message: No Content @@ -8400,8 +14122,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -8409,16 +14131,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-test-qa2'' was not found."}}' + under resource group ''sdk-test-qa2'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '200' + - '268' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:58:13 GMT + - Wed, 08 Jul 2020 13:51:53 GMT expires: - '-1' pragma: @@ -8444,8 +14167,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -8457,17 +14180,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cf15755c-4c4f-48e3-aa12-6b130a2d0029?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/efc996ba-c12c-46c6-9d02-3c6429280e56?api-version=2019-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 14 Jan 2020 16:58:15 GMT + - Wed, 08 Jul 2020 13:51:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cf15755c-4c4f-48e3-aa12-6b130a2d0029?api-version=2019-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/efc996ba-c12c-46c6-9d02-3c6429280e56?api-version=2019-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -8479,7 +14202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14994' x-powered-by: - ASP.NET status: @@ -8495,13 +14218,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cf15755c-4c4f-48e3-aa12-6b130a2d0029?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/efc996ba-c12c-46c6-9d02-3c6429280e56?api-version=2019-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cf15755c-4c4f-48e3-aa12-6b130a2d0029","name":"cf15755c-4c4f-48e3-aa12-6b130a2d0029","status":"Succeeded","startTime":"2020-01-14T16:58:15.8295508Z","endTime":"2020-01-14T16:58:16.7045844Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/efc996ba-c12c-46c6-9d02-3c6429280e56","name":"efc996ba-c12c-46c6-9d02-3c6429280e56","status":"Succeeded","startTime":"2020-07-08T13:51:55.8258021Z","endTime":"2020-07-08T13:51:56.6695706Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context @@ -8512,7 +14235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:58:47 GMT + - Wed, 08 Jul 2020 13:52:28 GMT expires: - '-1' pragma: @@ -8544,8 +14267,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34 + azure-mgmt-netapp/0.11.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -8553,16 +14276,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' - under resource group ''sdk-test-qa2'' was not found."}}' + under resource group ''sdk-test-qa2'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '166' + - '234' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 16:58:49 GMT + - Wed, 08 Jul 2020 13:52:30 GMT expires: - '-1' pragma: From 41d2904cb0e764cf7891850aa738bb98474d5ed8 Mon Sep 17 00:00:00 2001 From: Changlong Liu Date: Thu, 9 Jul 2020 10:15:29 +0800 Subject: [PATCH 5/6] set release date --- sdk/netapp/azure-mgmt-netapp/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md index 66573f1b398c..5da02d2e88c6 100644 --- a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md +++ b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 0.11.0 (2020-05-31) +## 0.11.0 (2020-07-09) **Breaking changes** From add6128d8b388bfe9537e02ca4e5fe73f23db517 Mon Sep 17 00:00:00 2001 From: Changlong Liu Date: Thu, 9 Jul 2020 10:36:27 +0800 Subject: [PATCH 6/6] remove meaningless print --- sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py index e3a29ed5ab03..872b9137666e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py @@ -50,7 +50,6 @@ def setUp(self): self.client = self.create_mgmt_client(azure.mgmt.netapp.AzureNetAppFilesManagementClient) def test_create_delete_snapshot(self): - print("@@@@@@@@@", TEST_RG) snapshot = create_snapshot(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, TEST_SNAPSHOT_1, LOCATION) snapshot_list = self.client.snapshots.list(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1)