From 1d54175bb63c9ea7af655d2ab1a995dcbad4c15d Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Wed, 13 May 2020 12:23:24 +0000 Subject: [PATCH 1/7] Added ability to create volume from snaphost, test fixes --- package-lock.json | 3 + .../cli/command_modules/netappfiles/custom.py | 5 +- .../recordings/test_active_directory.yaml | 138 +- .../test_create_delete_account.yaml | 174 +- .../recordings/test_create_delete_pool.yaml | 168 +- .../test_create_delete_snapshots.yaml | 1470 +- .../test_create_delete_volumes.yaml | 980 +- .../test_create_pool_string_size.yaml | 36 +- .../test_create_pool_too_small.yaml | 34 +- .../test_create_volume_from_snapshot.yaml | 2284 +++ ...te_volume_with_subnet_in_different_rg.yaml | 4198 +---- .../latest/recordings/test_export_policy.yaml | 2272 +-- .../test_export_policy_non_default.yaml | 1070 +- .../recordings/test_get_account_by_name.yaml | 66 +- .../recordings/test_get_pool_by_name.yaml | 96 +- .../latest/recordings/test_get_snapshot.yaml | 358 +- .../recordings/test_get_volume_by_name.yaml | 2422 +-- .../latest/recordings/test_list_accounts.yaml | 150 +- .../recordings/test_list_mount_targets.yaml | 739 +- .../latest/recordings/test_list_pools.yaml | 170 +- .../recordings/test_list_snapshots.yaml | 1870 +-- .../latest/recordings/test_list_volumes.yaml | 1765 +- .../recordings/test_perform_replication.yaml | 13485 ++-------------- .../recordings/test_update_account.yaml | 68 +- .../latest/recordings/test_update_pool.yaml | 90 +- .../latest/recordings/test_update_volume.yaml | 1114 +- .../tests/latest/test_account_commands.py | 2 +- .../tests/latest/test_snapshot_commands.py | 44 +- .../tests/latest/test_volume_commands.py | 34 +- 29 files changed, 8401 insertions(+), 26904 deletions(-) create mode 100644 package-lock.json create mode 100644 src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000000..48e341a0954 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3 @@ +{ + "lockfileVersion": 1 +} diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py index 315a357f21d..00f73cbaf34 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -95,7 +95,7 @@ def patch_pool(cmd, instance, size=None, service_level=None, tags=None): # -- volume -- # pylint: disable=too-many-locals -def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, file_path, usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, volume_type=None, endpoint_type=None, replication_schedule=None, remote_volume_resource_id=None, tags=None): +def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, file_path, usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, volume_type=None, endpoint_type=None, replication_schedule=None, remote_volume_resource_id=None, tags=None, snapshot_id=None): subs_id = get_subscription_id(cmd.cli_ctx) # determine vnet - supplied value can be name or ARM resource Id @@ -148,7 +148,8 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr export_policy=volume_export_policy, volume_type=volume_type, data_protection=data_protection, - tags=tags) + tags=tags, + snapshot_id = snapshot_id) return client.create_or_update(body, resource_group_name, account_name, pool_name, volume_name) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml index fc63017e30a..6679dee059f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '51' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.6098879Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.1539414Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","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/06193a15-9163-4ec6-96be-060fd62d9faf?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1?api-version=2019-10-01 cache-control: - no-cache content-length: - - '482' + - '477' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:22:32 GMT + - Wed, 13 May 2020 11:04:54 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A32.6098879Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.1539414Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06193a15-9163-4ec6-96be-060fd62d9faf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06193a15-9163-4ec6-96be-060fd62d9faf","name":"06193a15-9163-4ec6-96be-060fd62d9faf","status":"Succeeded","startTime":"2020-02-20T15:22:32.1617889Z","endTime":"2020-02-20T15:22:33.3893653Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1","name":"d2ec8503-6084-4c22-b741-fb00c87e79e1","status":"Succeeded","startTime":"2020-05-13T11:04:53.1114376Z","endTime":"2020-05-13T11:04:53.2208786Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:03 GMT + - Wed, 13 May 2020 11:05:25 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.2755084Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.2179873Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:25 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.2755084Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.2179873Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.2755084Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.2179873Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:06 GMT + - Wed, 13 May 2020 11:05:29 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.2755084Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.2179873Z'" expires: - '-1' pragma: @@ -244,28 +244,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.3243782Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.7653749Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '740' + - '735' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:10 GMT + - Wed, 13 May 2020 11:05:31 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A09.3243782Z'" + - W/"datetime'2020-05-13T11%3A05%3A31.7653749Z'" expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -303,28 +303,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A10.4244118Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A32.0685901Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '740' + - '735' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:12 GMT + - Wed, 13 May 2020 11:05:33 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A10.4244118Z'" + - W/"datetime'2020-05-13T11%3A05%3A32.0685901Z'" expires: - '-1' pragma: @@ -360,28 +360,28 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A10.4244118Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A32.0685901Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '740' + - '735' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:13 GMT + - Wed, 13 May 2020 11:05:34 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A10.4244118Z'" + - W/"datetime'2020-05-13T11%3A05%3A32.0685901Z'" expires: - '-1' pragma: @@ -404,8 +404,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": - {"activeDirectories": []}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"activeDirectories": + []}}' headers: Accept: - application/json @@ -416,36 +416,36 @@ interactions: Connection: - keep-alive Content-Length: - - '97' + - '92' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A15.3190139Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A35.530046Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' 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/abde66ce-ddd1-44f7-91bb-ddc40e41a81b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '739' + - '733' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:15 GMT + - Wed, 13 May 2020 11:05:35 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A15.3190139Z'" + - W/"datetime'2020-05-13T11%3A05%3A35.530046Z'" expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -483,24 +483,24 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/abde66ce-ddd1-44f7-91bb-ddc40e41a81b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/abde66ce-ddd1-44f7-91bb-ddc40e41a81b","name":"abde66ce-ddd1-44f7-91bb-ddc40e41a81b","status":"Succeeded","startTime":"2020-02-20T15:23:14.9432627Z","endTime":"2020-02-20T15:23:16.7401711Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e","name":"50623fb7-bceb-43b9-80e7-bea1e20b3e9e","status":"Succeeded","startTime":"2020-05-13T11:05:35.4875023Z","endTime":"2020-05-13T11:05:35.8938114Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:46 GMT + - Wed, 13 May 2020 11:06:06 GMT expires: - '-1' pragma: @@ -536,26 +536,26 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A16.5701909Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A35.8993081Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:46 GMT + - Wed, 13 May 2020 11:06:06 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A16.5701909Z'" + - W/"datetime'2020-05-13T11%3A05%3A35.8993081Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml index 2aa54393942..6406d8e4fab 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '74' + - '69' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.3615893Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5182004Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","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/2d8c52a9-208e-4f23-957d-4dde3bf12d28?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1?api-version=2019-10-01 cache-control: - no-cache content-length: - - '498' + - '493' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:22:32 GMT + - Wed, 13 May 2020 11:04:54 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.3615893Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.5182004Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2d8c52a9-208e-4f23-957d-4dde3bf12d28?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2d8c52a9-208e-4f23-957d-4dde3bf12d28","name":"2d8c52a9-208e-4f23-957d-4dde3bf12d28","status":"Succeeded","startTime":"2020-02-20T15:22:32.7661132Z","endTime":"2020-02-20T15:22:34.1254864Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1","name":"2406cb0d-22c0-49d7-b25b-46b3be2485e1","status":"Succeeded","startTime":"2020-05-13T11:04:53.4548071Z","endTime":"2020-05-13T11:04:53.5810377Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:25 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A34.0212103Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5772428Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '499' + - '494' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:25 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A34.0212103Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.5772428Z'" expires: - '-1' pragma: @@ -182,26 +182,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A34.0212103Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5772428Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '511' + - '506' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:06 GMT + - Wed, 13 May 2020 11:05:29 GMT expires: - '-1' pragma: @@ -239,8 +239,8 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -252,17 +252,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/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:23:09 GMT + - Wed, 13 May 2020 11:05:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -294,24 +294,24 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8","name":"5f018ae9-3436-4b9c-a2f3-6195f87365d8","status":"Succeeded","startTime":"2020-02-20T15:23:09.7353376Z","endTime":"2020-02-20T15:23:10.8603218Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9","name":"508d375f-9165-4ff5-997e-99ddbfc8aee9","status":"Succeeded","startTime":"2020-05-13T11:05:32.6418198Z","endTime":"2020-05-13T11:05:32.8293604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:41 GMT + - Wed, 13 May 2020 11:06:03 GMT expires: - '-1' pragma: @@ -347,8 +347,8 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -357,8 +357,6 @@ interactions: body: string: '{"value":[]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: @@ -366,30 +364,22 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:43 GMT + - Wed, 13 May 2020 11:06: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: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -400,36 +390,36 @@ interactions: Connection: - keep-alive Content-Length: - - '74' + - '69' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A47.5212688Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.7936817Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","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/e01118a8-2dea-4f29-8aa4-032937043a31?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '498' + - '493' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:47 GMT + - Wed, 13 May 2020 11:06:09 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A47.5212688Z'" + - W/"datetime'2020-05-13T11%3A06%3A08.7936817Z'" expires: - '-1' pragma: @@ -443,7 +433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -463,24 +453,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e01118a8-2dea-4f29-8aa4-032937043a31?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e01118a8-2dea-4f29-8aa4-032937043a31","name":"e01118a8-2dea-4f29-8aa4-032937043a31","status":"Succeeded","startTime":"2020-02-20T15:23:47.1122687Z","endTime":"2020-02-20T15:23:48.3310241Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e","name":"75b09ffa-235e-428e-92f4-282e8b7e0a0e","status":"Succeeded","startTime":"2020-05-13T11:06:08.7358057Z","endTime":"2020-05-13T11:06:08.8608286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:19 GMT + - Wed, 13 May 2020 11:06:40 GMT expires: - '-1' pragma: @@ -516,26 +506,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A48.2259316Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.8597291Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '499' + - '494' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:19 GMT + - Wed, 13 May 2020 11:06:40 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A48.2259316Z'" + - W/"datetime'2020-05-13T11%3A06%3A08.8597291Z'" expires: - '-1' pragma: @@ -571,26 +561,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A48.2259316Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.8597291Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '511' + - '506' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:20 GMT + - Wed, 13 May 2020 11:06:43 GMT expires: - '-1' pragma: @@ -628,8 +618,8 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -641,17 +631,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/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:24:24 GMT + - Wed, 13 May 2020 11:06:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -683,24 +673,24 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa","name":"bb712f06-eb54-414d-96aa-f5f76ed539fa","status":"Succeeded","startTime":"2020-02-20T15:24:23.7883861Z","endTime":"2020-02-20T15:24:24.8195791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e","name":"0a78a983-dc82-426e-92eb-f9282a59ec1e","status":"Succeeded","startTime":"2020-05-13T11:06:46.1298502Z","endTime":"2020-05-13T11:06:46.2711112Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:55 GMT + - Wed, 13 May 2020 11:07:16 GMT expires: - '-1' pragma: @@ -736,8 +726,8 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -753,7 +743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:57 GMT + - Wed, 13 May 2020 11:07:18 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml index 70e5c279a27..3036bfd1fa3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml @@ -17,20 +17,20 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.4940157Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A54.6459838Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/18addfc7-d5ac-4b58-ac0d-fdaad772633b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:12 GMT + - Wed, 13 May 2020 11:04:55 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.4940157Z'" + - W/"datetime'2020-05-13T11%3A04%3A54.6459838Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -74,13 +74,13 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/18addfc7-d5ac-4b58-ac0d-fdaad772633b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/18addfc7-d5ac-4b58-ac0d-fdaad772633b","name":"18addfc7-d5ac-4b58-ac0d-fdaad772633b","status":"Succeeded","startTime":"2020-02-20T15:35:12.0229719Z","endTime":"2020-02-20T15:35:13.6011236Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983","name":"0b47d132-c1ff-4a6a-96a5-d9acfcfcc983","status":"Succeeded","startTime":"2020-05-13T11:04:54.1926055Z","endTime":"2020-05-13T11:04:55.4292438Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:05:26 GMT expires: - '-1' pragma: @@ -127,13 +127,13 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A13.4979588Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A55.3136319Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:05:26 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A13.4979588Z'" + - W/"datetime'2020-05-13T11%3A04%3A55.3136319Z'" expires: - '-1' pragma: @@ -187,30 +187,30 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.044417Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A37.0930842Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/e2bfe6f6-1509-40d5-9621-e927afd15e0e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c440dbe-1c06-4768-91f3-4beede3354b9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '587' + - '588' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:48 GMT + - Wed, 13 May 2020 11:05:38 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A48.044417Z'" + - W/"datetime'2020-05-13T11%3A05%3A37.0930842Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -244,13 +244,13 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2bfe6f6-1509-40d5-9621-e927afd15e0e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c440dbe-1c06-4768-91f3-4beede3354b9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2bfe6f6-1509-40d5-9621-e927afd15e0e","name":"e2bfe6f6-1509-40d5-9621-e927afd15e0e","status":"Succeeded","startTime":"2020-02-20T15:35:47.6484863Z","endTime":"2020-02-20T15:35:49.0174124Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c440dbe-1c06-4768-91f3-4beede3354b9","name":"2c440dbe-1c06-4768-91f3-4beede3354b9","status":"Succeeded","startTime":"2020-05-13T11:05:36.6176561Z","endTime":"2020-05-13T11:05:38.1486227Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:19 GMT + - Wed, 13 May 2020 11:06:08 GMT expires: - '-1' pragma: @@ -297,13 +297,13 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.9172334Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"1ed74fe2-8ede-1462-a0a3-eb868942d39f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A38.0199786Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f042d2fd-7235-6ce6-0ab7-d303c5c4df35","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:20 GMT + - Wed, 13 May 2020 11:06:09 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A48.9172334Z'" + - W/"datetime'2020-05-13T11%3A05%3A38.0199786Z'" expires: - '-1' pragma: @@ -352,15 +352,15 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.9172334Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"1ed74fe2-8ede-1462-a0a3-eb868942d39f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A38.0199786Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f042d2fd-7235-6ce6-0ab7-d303c5c4df35","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -371,7 +371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:21 GMT + - Wed, 13 May 2020 11:06:12 GMT expires: - '-1' pragma: @@ -409,8 +409,8 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -422,17 +422,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/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:36:24 GMT + - Wed, 13 May 2020 11:06:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -444,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -464,13 +464,13 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d","name":"721f9018-b300-4ee0-8297-aaf30219686d","status":"Succeeded","startTime":"2020-02-20T15:36:24.7013074Z","endTime":"2020-02-20T15:36:25.6754429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e","name":"998e5e2e-2748-459f-a49e-6fe62abfa09e","status":"Succeeded","startTime":"2020-05-13T11:06:16.4910697Z","endTime":"2020-05-13T11:06:17.3348837Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -481,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:56 GMT + - Wed, 13 May 2020 11:06:47 GMT expires: - '-1' pragma: @@ -517,8 +517,8 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -536,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:58 GMT + - Wed, 13 May 2020 11:06:49 GMT expires: - '-1' pragma: @@ -577,20 +577,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A02.4062795Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A57.5827485Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/f5ec4f1e-8918-41df-8090-06fe80d08948?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c20ba60-a9f3-4c61-9e3b-4f298cded540?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -598,9 +598,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:37:02 GMT + - Wed, 13 May 2020 11:06:58 GMT etag: - - W/"datetime'2020-02-20T15%3A37%3A02.4062795Z'" + - W/"datetime'2020-05-13T11%3A06%3A57.5827485Z'" expires: - '-1' pragma: @@ -614,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -634,24 +634,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f5ec4f1e-8918-41df-8090-06fe80d08948?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c20ba60-a9f3-4c61-9e3b-4f298cded540?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f5ec4f1e-8918-41df-8090-06fe80d08948","name":"f5ec4f1e-8918-41df-8090-06fe80d08948","status":"Succeeded","startTime":"2020-02-20T15:37:02.0026443Z","endTime":"2020-02-20T15:37:03.4248362Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c20ba60-a9f3-4c61-9e3b-4f298cded540","name":"2c20ba60-a9f3-4c61-9e3b-4f298cded540","status":"Succeeded","startTime":"2020-05-13T11:06:57.125117Z","endTime":"2020-05-13T11:06:58.7838264Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '620' + - '619' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:37:33 GMT + - Wed, 13 May 2020 11:07:29 GMT expires: - '-1' pragma: @@ -687,13 +687,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A03.3251391Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"dd6408a3-1fd8-0b95-3a49-501e4a6249db","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A58.6707977Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"5ace7d14-d3dc-af98-c7d5-29a6b59fcb51","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -704,9 +704,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:37:33 GMT + - Wed, 13 May 2020 11:07:30 GMT etag: - - W/"datetime'2020-02-20T15%3A37%3A03.3251391Z'" + - W/"datetime'2020-05-13T11%3A06%3A58.6707977Z'" expires: - '-1' pragma: @@ -744,8 +744,8 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -757,17 +757,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/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:37:37 GMT + - Wed, 13 May 2020 11:07:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -799,13 +799,13 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875","name":"c705e092-a6a8-44f1-8a73-7b8c2a400875","status":"Succeeded","startTime":"2020-02-20T15:37:37.1733703Z","endTime":"2020-02-20T15:37:37.9764617Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d","name":"12d94f8d-8636-46e2-92ab-4184d4b0705d","status":"Succeeded","startTime":"2020-05-13T11:07:35.6273984Z","endTime":"2020-05-13T11:07:36.4243392Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:08 GMT + - Wed, 13 May 2020 11:08:06 GMT expires: - '-1' pragma: @@ -852,8 +852,8 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -871,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:11 GMT + - Wed, 13 May 2020 11:08:09 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml index 53520c01ca9..752a03094e5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"784e0609-2d6e-400a-b71c-5f4e5baa285e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f64e464e-dab4-4fac-80d7-f6c163f3ded0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fa6bbbab-ab02-4936-9594-21aef5f98809\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ef65c1c4-ac11-4288-afd2-a6bea1b1b3cb?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/68e40c57-bc4e-459e-954b-e288c0400602?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:26 GMT + - Wed, 13 May 2020 11:05:45 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 288f5b29-c708-4a62-8c3a-191fa6f1f3d1 + - 012cf3db-0e6f-49b3-8402-feb402484b79 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ef65c1c4-ac11-4288-afd2-a6bea1b1b3cb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/68e40c57-bc4e-459e-954b-e288c0400602?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:29 GMT + - Wed, 13 May 2020 11:05:49 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19e3203e-8977-4780-a4f4-00f827528b29 + - a6d5f945-36bd-4d7a-bace-335dbf9993e9 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"813b1588-8cbf-4377-9acc-ecd050203677\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6bf57116-40d9-4b70-ae91-0ca3619d747e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fa6bbbab-ab02-4936-9594-21aef5f98809\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:30 GMT + - Wed, 13 May 2020 11:05:49 GMT etag: - - W/"813b1588-8cbf-4377-9acc-ecd050203677" + - W/"6bf57116-40d9-4b70-ae91-0ca3619d747e" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0402071a-cc37-491a-997d-6f6b9e93d808 + - d23941f6-c89d-41bb-aa87-49bf8b6be14f status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"813b1588-8cbf-4377-9acc-ecd050203677\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6bf57116-40d9-4b70-ae91-0ca3619d747e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fa6bbbab-ab02-4936-9594-21aef5f98809\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:31 GMT + - Wed, 13 May 2020 11:05:50 GMT etag: - - W/"813b1588-8cbf-4377-9acc-ecd050203677" + - W/"6bf57116-40d9-4b70-ae91-0ca3619d747e" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04859fc1-5b6a-4476-832f-2b144dfb1c98 + - cd43764e-c480-4ebd-97c2-bdf13bb247d2 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"f8c0fd69-5ede-47e0-a8b0-941e5c003043\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fa6bbbab-ab02-4936-9594-21aef5f98809\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"f8c0fd69-5ede-47e0-a8b0-941e5c003043\\\"\",\r\n + \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"f8c0fd69-5ede-47e0-a8b0-941e5c003043\\\"\",\r\n + \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/db453df1-bc17-4bf2-adcb-c4b04078b43e?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1de77fa-907e-483d-8771-f650f53b481b?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:32 GMT + - Wed, 13 May 2020 11:05:51 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 776be1a4-81e4-4028-869d-2f8d322dba44 + - 086abc94-18b4-4728-9e3c-78042942cc73 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/db453df1-bc17-4bf2-adcb-c4b04078b43e?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1de77fa-907e-483d-8771-f650f53b481b?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:36 GMT + - Wed, 13 May 2020 11:05:56 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e40e19db-2614-465f-88a6-525b39ef6dac + - 0a9b4354-796f-4234-9109-e9b4e2b75f50 status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"81ddd657-be32-4ddf-bf72-5aeeca93482c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fa6bbbab-ab02-4936-9594-21aef5f98809\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"81ddd657-be32-4ddf-bf72-5aeeca93482c\\\"\",\r\n + \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"81ddd657-be32-4ddf-bf72-5aeeca93482c\\\"\",\r\n + \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:36 GMT + - Wed, 13 May 2020 11:05:56 GMT etag: - - W/"81ddd657-be32-4ddf-bf72-5aeeca93482c" + - W/"1ae2d94d-32b1-488a-9cf1-b6843da362b8" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a74a858-94bb-4ee8-917e-32e4f9a15acd + - d362f9c3-f7d7-4d79-9e1b-ff6407d2c5f4 status: code: 200 message: OK @@ -472,20 +472,20 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A43.6761313Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A03.0886252Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/2592b65a-5e41-4175-a404-20802ee5f0c2?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:44 GMT + - Wed, 13 May 2020 11:06:03 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A43.6761313Z'" + - W/"datetime'2020-05-13T11%3A06%3A03.0886252Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2592b65a-5e41-4175-a404-20802ee5f0c2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2592b65a-5e41-4175-a404-20802ee5f0c2","name":"2592b65a-5e41-4175-a404-20802ee5f0c2","status":"Succeeded","startTime":"2020-04-08T03:23:43.6032348Z","endTime":"2020-04-08T03:23:43.7438688Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae","name":"86ebec95-12b8-498c-ad13-721bb99c53ae","status":"Succeeded","startTime":"2020-05-13T11:06:03.01239Z","endTime":"2020-05-13T11:06:03.1686155Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:16 GMT + - Wed, 13 May 2020 11:06:35 GMT expires: - '-1' pragma: @@ -582,13 +582,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A43.7461811Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A03.1566732Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:16 GMT + - Wed, 13 May 2020 11:06:35 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A43.7461811Z'" + - W/"datetime'2020-05-13T11%3A06%3A03.1566732Z'" expires: - '-1' pragma: @@ -642,20 +642,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A23.2717374Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A41.3207886Z''\"","location":"westus2","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/westus2/operationResults/d1a51178-b232-424e-ba4f-a53481406cbd?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:24 GMT + - Wed, 13 May 2020 11:06:41 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A23.2717374Z'" + - W/"datetime'2020-05-13T11%3A06%3A41.3207886Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1a51178-b232-424e-ba4f-a53481406cbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d1a51178-b232-424e-ba4f-a53481406cbd","name":"d1a51178-b232-424e-ba4f-a53481406cbd","status":"Succeeded","startTime":"2020-04-08T03:24:23.2154419Z","endTime":"2020-04-08T03:24:23.5435638Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee","name":"9c53daf9-5d75-4132-b527-eeeb70797aee","status":"Succeeded","startTime":"2020-05-13T11:06:41.256333Z","endTime":"2020-05-13T11:06:41.5864267Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '614' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:55 GMT + - Wed, 13 May 2020 11:07:12 GMT expires: - '-1' pragma: @@ -752,13 +752,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A23.5419326Z''\"","location":"westus2","properties":{"poolId":"9bde22a6-93fa-8729-da55-a1e76a14c5fa","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A41.5839753Z''\"","location":"westus2","properties":{"poolId":"ac52c92c-50ab-e9e1-009a-bef1e4cf34fc","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:55 GMT + - Wed, 13 May 2020 11:07:12 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A23.5419326Z'" + - W/"datetime'2020-05-13T11%3A06%3A41.5839753Z'" expires: - '-1' pragma: @@ -813,20 +813,20 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A11.4535512Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A07%3A19.8151384Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:11 GMT + - Wed, 13 May 2020 11:07:20 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A11.4535512Z'" + - W/"datetime'2020-05-13T11%3A07%3A19.8151384Z'" expires: - '-1' pragma: @@ -871,24 +871,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:42 GMT + - Wed, 13 May 2020 11:07:51 GMT expires: - '-1' pragma: @@ -925,24 +925,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:13 GMT + - Wed, 13 May 2020 11:08:21 GMT expires: - '-1' pragma: @@ -979,24 +979,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:43 GMT + - Wed, 13 May 2020 11:08:52 GMT expires: - '-1' pragma: @@ -1033,24 +1033,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:14 GMT + - Wed, 13 May 2020 11:09:22 GMT expires: - '-1' pragma: @@ -1087,24 +1087,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:44 GMT + - Wed, 13 May 2020 11:09:52 GMT expires: - '-1' pragma: @@ -1141,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Creating","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:14 GMT + - Wed, 13 May 2020 11:10:23 GMT expires: - '-1' pragma: @@ -1195,24 +1195,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","name":"c9e05cb9-51ec-4524-9d99-f6cb7fcd1397","status":"Succeeded","startTime":"2020-04-08T03:25:11.4048184Z","endTime":"2020-04-08T03:28:16.0027291Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:44 GMT + - Wed, 13 May 2020 11:10:54 GMT expires: - '-1' pragma: @@ -1249,26 +1249,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A28%3A15.9988795Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","fileSystemId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_cd4dedca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1547' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:45 GMT - etag: - - W/"datetime'2020-04-08T03%3A28%3A15.9988795Z'" + - Wed, 13 May 2020 11:11:24 GMT expires: - '-1' pragma: @@ -1291,49 +1289,94 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "ddaa01f7-8e29-413b-9ff7-3be52056ac1c"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot create + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '95' - Content-Type: + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:11: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58f254bd-76b7-4bdc-b80e-5001c02ed114?api-version=2019-10-01 cache-control: - no-cache content-length: - - '662' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:52 GMT + - Wed, 13 May 2020 11:12:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58f254bd-76b7-4bdc-b80e-5001c02ed114?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1342,15 +1385,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: - - '1192' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1359,30 +1404,1065 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:12: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:13: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:13: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58f254bd-76b7-4bdc-b80e-5001c02ed114?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/58f254bd-76b7-4bdc-b80e-5001c02ed114","name":"58f254bd-76b7-4bdc-b80e-5001c02ed114","status":"Succeeded","startTime":"2020-04-08T03:28:51.82366Z","endTime":"2020-04-08T03:29:05.5328202Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '681' + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:15: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:16: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:20: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:20: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Succeeded","startTime":"2020-05-13T11:07:19.752857Z","endTime":"2020-05-13T11:20:41.8971645Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '647' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A20%3A41.8920558Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b9a754a1-3866-73c7-8754-9930122f8077","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_b1e39e5d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1547' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21:02 GMT + etag: + - W/"datetime'2020-05-13T11%3A20%3A41.8920558Z'" + 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: '{"location": "westus2", "properties": {"fileSystemId": "b9a754a1-3866-73c7-8754-9930122f8077"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + Content-Length: + - '95' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '662' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-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: + - '1194' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8","name":"b2bdbaae-0945-41df-8df1-eb6957ea88a8","status":"Succeeded","startTime":"2020-05-13T11:21:11.2623607Z","endTime":"2020-05-13T11:21:15.4497721Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '683' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:23 GMT + - Wed, 13 May 2020 11:21:43 GMT expires: - '-1' pragma: @@ -1418,13 +2498,13 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"ce6aa2fc-bc13-c508-bebd-c215e725023b","fileSystemId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","name":"cli-sn-000005","created":"2020-04-08T03:28:52Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"10928f11-71d6-3d31-dede-cb6c34896db1","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005","created":"2020-05-13T11:21:13Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1435,7 +2515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:24 GMT + - Wed, 13 May 2020 11:21:44 GMT expires: - '-1' pragma: @@ -1471,15 +2551,15 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"ce6aa2fc-bc13-c508-bebd-c215e725023b","fileSystemId":"ddaa01f7-8e29-413b-9ff7-3be52056ac1c","name":"cli-sn-000005","created":"2020-04-08T03:28:52Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"10928f11-71d6-3d31-dede-cb6c34896db1","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005","created":"2020-05-13T11:21:13Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1490,7 +2570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:26 GMT + - Wed, 13 May 2020 11:21:58 GMT expires: - '-1' pragma: @@ -1528,8 +2608,8 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -1541,17 +2621,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/676fe7ad-290c-49cb-af77-0e1df0b7ca96?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 08 Apr 2020 03:29:29 GMT + - Wed, 13 May 2020 11:22:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/676fe7ad-290c-49cb-af77-0e1df0b7ca96?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1583,13 +2663,13 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/676fe7ad-290c-49cb-af77-0e1df0b7ca96?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/676fe7ad-290c-49cb-af77-0e1df0b7ca96","name":"676fe7ad-290c-49cb-af77-0e1df0b7ca96","status":"Succeeded","startTime":"2020-04-08T03:29:29.4250979Z","endTime":"2020-04-08T03:29:36.3994878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2","name":"34cc42da-fbf1-4699-a2c1-3c53963d0cc2","status":"Succeeded","startTime":"2020-05-13T11:22:00.6004144Z","endTime":"2020-05-13T11:22:03.5537778Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -1600,7 +2680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:00 GMT + - Wed, 13 May 2020 11:22:31 GMT expires: - '-1' pragma: @@ -1636,8 +2716,8 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -1655,7 +2735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:03 GMT + - Wed, 13 May 2020 11:22:35 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml index 82cef69e11d..deacfed56e7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"1b9f1a05-9e0f-4482-9ed7-34a15238b8f0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"37e32379-87b2-4fc7-8a63-ac178010309a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"55db3713-aa95-409e-a141-942bda3a6282\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0111e70-383a-4b83-8622-27172eb6c8d8?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0ce5fbc-7543-4335-a31c-99f194449ba0?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:25 GMT + - Wed, 13 May 2020 11:11:45 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 952de211-a443-46d9-91c8-69f50b1410ed + - 985ccfda-5a79-4d2b-ad92-14583aec8fbe x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0111e70-383a-4b83-8622-27172eb6c8d8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0ce5fbc-7543-4335-a31c-99f194449ba0?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:28 GMT + - Wed, 13 May 2020 11:11:50 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 216f6f13-76b1-422b-bbf0-cc0e161fa459 + - cf995887-854d-460f-bdf2-678cfa486ec0 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"edc86c4a-3d3d-4744-83d9-b19bc7099430\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"255cb331-63ea-444d-ab11-311e6330be3c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"55db3713-aa95-409e-a141-942bda3a6282\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:29 GMT + - Wed, 13 May 2020 11:11:50 GMT etag: - - W/"edc86c4a-3d3d-4744-83d9-b19bc7099430" + - W/"255cb331-63ea-444d-ab11-311e6330be3c" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15fad688-b865-4159-915a-b7c91c47c934 + - 76162790-2ef7-47d8-8795-8a7a924fb928 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"edc86c4a-3d3d-4744-83d9-b19bc7099430\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"255cb331-63ea-444d-ab11-311e6330be3c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"55db3713-aa95-409e-a141-942bda3a6282\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:30 GMT + - Wed, 13 May 2020 11:11:51 GMT etag: - - W/"edc86c4a-3d3d-4744-83d9-b19bc7099430" + - W/"255cb331-63ea-444d-ab11-311e6330be3c" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c2f3287-96be-4a01-97bc-69cc5d085d4e + - 0872a56f-65b3-4c04-800d-adcaa3e5985b status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"fd54b6b8-8471-41a0-bb43-40ea1e4d61f9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"55db3713-aa95-409e-a141-942bda3a6282\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"fd54b6b8-8471-41a0-bb43-40ea1e4d61f9\\\"\",\r\n + \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"fd54b6b8-8471-41a0-bb43-40ea1e4d61f9\\\"\",\r\n + \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1c313dea-c3db-43ac-9fc3-a2eeeef345e6?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbcffc42-81d5-422c-98d1-67d4db917921?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:31 GMT + - Wed, 13 May 2020 11:11:52 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83dbbb5c-6a23-4054-b1b2-5fa4b393359a + - 8aeb679b-06a3-46cb-ac1c-c2cd96688178 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1c313dea-c3db-43ac-9fc3-a2eeeef345e6?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbcffc42-81d5-422c-98d1-67d4db917921?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:35 GMT + - Wed, 13 May 2020 11:11:56 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27755693-2fa0-4d3b-a231-71dbef4652bd + - 8d2d123f-a044-4f12-9507-a47f55b31fb0 status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"89939312-4993-40e8-b4c3-c0e7e144c39b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"55db3713-aa95-409e-a141-942bda3a6282\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"89939312-4993-40e8-b4c3-c0e7e144c39b\\\"\",\r\n + \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"89939312-4993-40e8-b4c3-c0e7e144c39b\\\"\",\r\n + \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:35 GMT + - Wed, 13 May 2020 11:11:57 GMT etag: - - W/"89939312-4993-40e8-b4c3-c0e7e144c39b" + - W/"69e123c5-7fef-4905-ba65-b6e5fb1283cb" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5fab45e3-3600-4fb4-95f6-099b018cfb49 + - f6e7d6bc-b914-4a13-b100-67b888a2567b status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A39.3223363Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A12%3A04.6977034Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/a5716cd0-5206-4db2-9406-dca871a5b194?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/52997508-6abc-4897-a413-c496bd0a4bcc?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:39 GMT + - Wed, 13 May 2020 11:12:04 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A39.3223363Z'" + - W/"datetime'2020-05-13T11%3A12%3A04.6977034Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a5716cd0-5206-4db2-9406-dca871a5b194?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/52997508-6abc-4897-a413-c496bd0a4bcc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a5716cd0-5206-4db2-9406-dca871a5b194","name":"a5716cd0-5206-4db2-9406-dca871a5b194","status":"Succeeded","startTime":"2020-04-08T03:24:39.2703745Z","endTime":"2020-04-08T03:24:39.3797722Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/52997508-6abc-4897-a413-c496bd0a4bcc","name":"52997508-6abc-4897-a413-c496bd0a4bcc","status":"Succeeded","startTime":"2020-05-13T11:12:04.2731073Z","endTime":"2020-05-13T11:12:05.4821616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:10 GMT + - Wed, 13 May 2020 11:12:37 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A39.3773761Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A12%3A05.3803665Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:10 GMT + - Wed, 13 May 2020 11:12:37 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A39.3773761Z'" + - W/"datetime'2020-05-13T11%3A12%3A05.3803665Z'" expires: - '-1' pragma: @@ -624,8 +624,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '140' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A17.2037049Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A12%3A45.5543453Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/westus2/operationResults/e8cd15ea-c03f-4307-a184-c261b20e62b3?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0a9d7286-cdcc-43de-85c6-25c80d764c05?api-version=2019-10-01 cache-control: - no-cache content-length: - - '583' + - '588' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:17 GMT + - Wed, 13 May 2020 11:12:47 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A17.2037049Z'" + - W/"datetime'2020-05-13T11%3A12%3A45.5543453Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8cd15ea-c03f-4307-a184-c261b20e62b3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0a9d7286-cdcc-43de-85c6-25c80d764c05?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8cd15ea-c03f-4307-a184-c261b20e62b3","name":"e8cd15ea-c03f-4307-a184-c261b20e62b3","status":"Succeeded","startTime":"2020-04-08T03:25:17.1496811Z","endTime":"2020-04-08T03:25:17.3696914Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0a9d7286-cdcc-43de-85c6-25c80d764c05","name":"0a9d7286-cdcc-43de-85c6-25c80d764c05","status":"Succeeded","startTime":"2020-05-13T11:12:45.0807792Z","endTime":"2020-05-13T11:12:46.4883136Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:50 GMT + - Wed, 13 May 2020 11:13:18 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A17.3678239Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"d3166082-fbd7-c16d-f59a-03168cb74b98","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A12%3A46.3761438Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"50f1d37d-2787-e124-3113-58b091e6f57e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '691' + - '696' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:50 GMT + - Wed, 13 May 2020 11:13:18 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A17.3678239Z'" + - W/"datetime'2020-05-13T11%3A12%3A46.3761438Z'" expires: - '-1' pragma: @@ -794,7 +794,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: @@ -807,37 +807,37 @@ interactions: Connection: - keep-alive Content-Length: - - '469' + - '474' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A56.0707861Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A13%3A28.8493607Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 cache-control: - no-cache content-length: - - '977' + - '982' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:56 GMT + - Wed, 13 May 2020 11:13:29 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A56.0707861Z'" + - W/"datetime'2020-05-13T11%3A13%3A28.8493607Z'" expires: - '-1' pragma: @@ -851,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -872,24 +872,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:28 GMT + - Wed, 13 May 2020 11:14:00 GMT expires: - '-1' pragma: @@ -926,24 +926,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:59 GMT + - Wed, 13 May 2020 11:14:31 GMT expires: - '-1' pragma: @@ -980,24 +980,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:29 GMT + - Wed, 13 May 2020 11:15:02 GMT expires: - '-1' pragma: @@ -1034,24 +1034,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:59 GMT + - Wed, 13 May 2020 11:15:32 GMT expires: - '-1' pragma: @@ -1088,24 +1088,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:30 GMT + - Wed, 13 May 2020 11:16:02 GMT expires: - '-1' pragma: @@ -1142,24 +1142,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:00 GMT + - Wed, 13 May 2020 11:16:33 GMT expires: - '-1' pragma: @@ -1196,24 +1196,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:31 GMT + - Wed, 13 May 2020 11:17:03 GMT expires: - '-1' pragma: @@ -1250,24 +1250,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:02 GMT + - Wed, 13 May 2020 11:17:33 GMT expires: - '-1' pragma: @@ -1304,24 +1304,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:32 GMT + - Wed, 13 May 2020 11:18:03 GMT expires: - '-1' pragma: @@ -1358,24 +1358,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:03 GMT + - Wed, 13 May 2020 11:18:34 GMT expires: - '-1' pragma: @@ -1412,24 +1412,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Creating","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:33 GMT + - Wed, 13 May 2020 11:19:04 GMT expires: - '-1' pragma: @@ -1466,24 +1466,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38954456-85b1-4046-9578-010acc02ce6a","name":"38954456-85b1-4046-9578-010acc02ce6a","status":"Succeeded","startTime":"2020-04-08T03:25:56.0096508Z","endTime":"2020-04-08T03:31:39.7236076Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:04 GMT + - Wed, 13 May 2020 11:19:35 GMT expires: - '-1' pragma: @@ -1520,26 +1520,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A31%3A39.7160635Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4614dc57-6a65-b71f-364e-502fca32077c","fileSystemId":"4614dc57-6a65-b71f-364e-502fca32077c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"4614dc57-6a65-b71f-364e-502fca32077c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_f39f0d48","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1594' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:05 GMT - etag: - - W/"datetime'2020-04-08T03%3A31%3A39.7160635Z'" + - Wed, 13 May 2020 11:20:05 GMT expires: - '-1' pragma: @@ -1569,32 +1567,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A31%3A39.7160635Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4614dc57-6a65-b71f-364e-502fca32077c","fileSystemId":"4614dc57-6a65-b71f-364e-502fca32077c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"4614dc57-6a65-b71f-364e-502fca32077c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_f39f0d48","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1606' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:09 GMT + - Wed, 13 May 2020 11:20:36 GMT expires: - '-1' pragma: @@ -1624,38 +1621,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 cache-control: - no-cache content-length: - - '0' + - '642' + content-type: + - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:11 GMT + - Wed, 13 May 2020 11:21:06 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1664,15 +1656,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-deletes: - - '14998' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1681,30 +1675,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:42 GMT + - Wed, 13 May 2020 11:21:37 GMT expires: - '-1' pragma: @@ -1734,30 +1729,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:12 GMT + - Wed, 13 May 2020 11:22:08 GMT expires: - '-1' pragma: @@ -1787,30 +1783,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:43 GMT + - Wed, 13 May 2020 11:22:38 GMT expires: - '-1' pragma: @@ -1840,30 +1837,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:13 GMT + - Wed, 13 May 2020 11:23:08 GMT expires: - '-1' pragma: @@ -1893,30 +1891,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:44 GMT + - Wed, 13 May 2020 11:23:38 GMT expires: - '-1' pragma: @@ -1946,30 +1945,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:14 GMT + - Wed, 13 May 2020 11:24:09 GMT expires: - '-1' pragma: @@ -1999,30 +1999,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:45 GMT + - Wed, 13 May 2020 11:24:39 GMT expires: - '-1' pragma: @@ -2052,30 +2053,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:15 GMT + - Wed, 13 May 2020 11:25:10 GMT expires: - '-1' pragma: @@ -2105,30 +2107,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:46 GMT + - Wed, 13 May 2020 11:25:40 GMT expires: - '-1' pragma: @@ -2158,30 +2161,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:37:16 GMT + - Wed, 13 May 2020 11:26:11 GMT expires: - '-1' pragma: @@ -2211,30 +2215,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Succeeded","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"2020-05-13T11:26:12.3727997Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:37:47 GMT + - Wed, 13 May 2020 11:26:41 GMT expires: - '-1' pragma: @@ -2264,30 +2269,88 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A26%3A12.196846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bfe5afdc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1598' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:17 GMT + - Wed, 13 May 2020 11:26:42 GMT + etag: + - W/"datetime'2020-05-13T11%3A26%3A12.196846Z'" + 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 + CommandName: + - netappfiles volume list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A26%3A12.196846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bfe5afdc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}]}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1610' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:26:46 GMT expires: - '-1' pragma: @@ -2309,6 +2372,63 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 May 2020 11:26:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-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-deletes: + - '14997' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -2323,24 +2443,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:48 GMT + - Wed, 13 May 2020 11:27:20 GMT expires: - '-1' pragma: @@ -2376,24 +2496,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:19 GMT + - Wed, 13 May 2020 11:27:51 GMT expires: - '-1' pragma: @@ -2429,24 +2549,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:49 GMT + - Wed, 13 May 2020 11:28:22 GMT expires: - '-1' pragma: @@ -2482,24 +2602,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:19 GMT + - Wed, 13 May 2020 11:28:52 GMT expires: - '-1' pragma: @@ -2535,24 +2655,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:51 GMT + - Wed, 13 May 2020 11:29:22 GMT expires: - '-1' pragma: @@ -2588,24 +2708,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:41:20 GMT + - Wed, 13 May 2020 11:29:53 GMT expires: - '-1' pragma: @@ -2641,24 +2761,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:41:51 GMT + - Wed, 13 May 2020 11:30:23 GMT expires: - '-1' pragma: @@ -2694,24 +2814,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:21 GMT + - Wed, 13 May 2020 11:30:53 GMT expires: - '-1' pragma: @@ -2747,24 +2867,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:52 GMT + - Wed, 13 May 2020 11:31:23 GMT expires: - '-1' pragma: @@ -2800,24 +2920,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:22 GMT + - Wed, 13 May 2020 11:31:54 GMT expires: - '-1' pragma: @@ -2853,24 +2973,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:53 GMT + - Wed, 13 May 2020 11:32:24 GMT expires: - '-1' pragma: @@ -2906,24 +3026,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:23 GMT + - Wed, 13 May 2020 11:32:55 GMT expires: - '-1' pragma: @@ -2959,24 +3079,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:55 GMT + - Wed, 13 May 2020 11:33:26 GMT expires: - '-1' pragma: @@ -3012,24 +3132,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:25 GMT + - Wed, 13 May 2020 11:33:57 GMT expires: - '-1' pragma: @@ -3065,24 +3185,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:55 GMT + - Wed, 13 May 2020 11:34:27 GMT expires: - '-1' pragma: @@ -3118,24 +3238,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:26 GMT + - Wed, 13 May 2020 11:34:57 GMT expires: - '-1' pragma: @@ -3171,24 +3291,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:56 GMT + - Wed, 13 May 2020 11:35:28 GMT expires: - '-1' pragma: @@ -3224,24 +3344,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Deleting","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:26 GMT + - Wed, 13 May 2020 11:35:58 GMT expires: - '-1' pragma: @@ -3277,24 +3397,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","name":"1e48722e-b1dc-49f7-84a5-0c7ed7d752ef","status":"Succeeded","startTime":"2020-04-08T03:32:10.9688592Z","endTime":"2020-04-08T03:47:36.7975109Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Succeeded","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"2020-05-13T11:36:24.7549052Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:57 GMT + - Wed, 13 May 2020 11:36:28 GMT expires: - '-1' pragma: @@ -3330,8 +3450,8 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -3349,7 +3469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:59 GMT + - Wed, 13 May 2020 11:36:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml index e2d9e788825..caa856dfd5c 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml @@ -17,20 +17,20 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A11.9294844Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A55.7070143Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/be000641-c1b4-4e96-bf23-016ab3715b4a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e317d849-4d17-435a-910f-7f79515a57c6?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:12 GMT + - Wed, 13 May 2020 11:04:57 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A11.9294844Z'" + - W/"datetime'2020-05-13T11%3A04%3A55.7070143Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be000641-c1b4-4e96-bf23-016ab3715b4a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e317d849-4d17-435a-910f-7f79515a57c6?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be000641-c1b4-4e96-bf23-016ab3715b4a","name":"be000641-c1b4-4e96-bf23-016ab3715b4a","status":"Succeeded","startTime":"2020-02-20T15:35:11.5055337Z","endTime":"2020-02-20T15:35:12.7553271Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e317d849-4d17-435a-910f-7f79515a57c6","name":"e317d849-4d17-435a-910f-7f79515a57c6","status":"Succeeded","startTime":"2020-05-13T11:04:55.2082875Z","endTime":"2020-05-13T11:04:56.476208Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '580' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:05:27 GMT expires: - '-1' pragma: @@ -127,13 +127,13 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.6461585Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A56.3776658Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:05:27 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.6461585Z'" + - W/"datetime'2020-05-13T11%3A04%3A56.3776658Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml index 13066ce9eae..7c804214166 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml @@ -17,20 +17,20 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.1036493Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A22.7531417Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/c01e3198-34e1-4e83-9340-e014c17d808c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8cceb0b0-79f6-41dd-b52b-7fcf58553c48?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:11 GMT + - Wed, 13 May 2020 11:06:23 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.1036493Z'" + - W/"datetime'2020-05-13T11%3A06%3A22.7531417Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -74,13 +74,13 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c01e3198-34e1-4e83-9340-e014c17d808c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8cceb0b0-79f6-41dd-b52b-7fcf58553c48?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c01e3198-34e1-4e83-9340-e014c17d808c","name":"c01e3198-34e1-4e83-9340-e014c17d808c","status":"Succeeded","startTime":"2020-02-20T15:35:11.6689414Z","endTime":"2020-02-20T15:35:12.8667209Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8cceb0b0-79f6-41dd-b52b-7fcf58553c48","name":"8cceb0b0-79f6-41dd-b52b-7fcf58553c48","status":"Succeeded","startTime":"2020-05-13T11:06:22.3382452Z","endTime":"2020-05-13T11:06:23.5734257Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:42 GMT + - Wed, 13 May 2020 11:06:53 GMT expires: - '-1' pragma: @@ -127,13 +127,13 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.7652717Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A23.4658284Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:06:53 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.7652717Z'" + - W/"datetime'2020-05-13T11%3A06%3A23.4658284Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml new file mode 100644 index 00000000000..a3404fae2eb --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml @@ -0,0 +1,2284 @@ +interactions: +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"c9b523df-2227-4a10-a77a-bf42af490312\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f862949-bf8b-489d-b7b4-a3bbb181bd2c?api-version=2020-03-01 + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:09:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ef30cdd0-3f74-465b-9ad1-ee0911b16420 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f862949-bf8b-489d-b7b4-a3bbb181bd2c?api-version=2020-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:09:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 60926aa5-3912-409b-b037-60113de4b9bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"598666c4-593f-4613-881c-480f2197018f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:09:58 GMT + etag: + - W/"598666c4-593f-4613-881c-480f2197018f" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c4ed32a3-3647-4c0a-9bd5-b6740e2f082e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"598666c4-593f-4613-881c-480f2197018f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:09:59 GMT + etag: + - W/"598666c4-593f-4613-881c-480f2197018f" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5fd26d3-0c82-4a02-8a48-9dfb444b9611 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", + "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.5.0.0/24", "delegations": [{"properties": {"serviceName": + "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-lefr-02"}], + "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": + false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '627' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n + \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ca5aad12-3442-40b7-b98d-99264ad1ccb0?api-version=2020-03-01 + cache-control: + - no-cache + content-length: + - '2365' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d184f810-540e-46aa-a0ab-97f08be0b675 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ca5aad12-3442-40b7-b98d-99264ad1ccb0?api-version=2020-03-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7bd5c7e8-fca0-4903-86a3-a07f3df2d068 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n + \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n + \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2367' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:05 GMT + etag: + - W/"dfb63292-0e26-4171-9431-465a81abff59" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e8694b92-0ef9-4b65-9f11-22043e91de63 + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -l + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A10%3A15.6590688Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '452' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:16 GMT + etag: + - W/"datetime'2020-05-13T11%3A10%3A15.6590688Z'" + 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-writes: + - '1195' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a","name":"e63597c2-7dea-4843-a740-820c7275ff6a","status":"Succeeded","startTime":"2020-05-13T11:10:15.6036144Z","endTime":"2020-05-13T11:10:15.7286111Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10: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 + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A10%3A15.7311205Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '453' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:47 GMT + etag: + - W/"datetime'2020-05-13T11%3A10%3A15.7311205Z'" + 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: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A53.7251145Z''\"","location":"westus2","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/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '542' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10:54 GMT + etag: + - W/"datetime'2020-05-13T11%3A10%3A53.7251145Z'" + 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-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df","name":"eadaf66b-2edb-4a61-95c6-1e4855a2b6df","status":"Succeeded","startTime":"2020-05-13T11:10:53.6415547Z","endTime":"2020-05-13T11:10:53.9072594Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '615' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:11: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 + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A53.9062437Z''\"","location":"westus2","properties":{"poolId":"3aa5bc50-b554-86b1-d6b8-cf2752476559","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '650' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:11:26 GMT + etag: + - W/"datetime'2020-05-13T11%3A10%3A53.9062437Z'" + 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: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '389' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A33.3042357Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '904' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:11:33 GMT + etag: + - W/"datetime'2020-05-13T11%3A11%3A33.3042357Z'" + 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-writes: + - '1193' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:12: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:12: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:13: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:13: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:15: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:15: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:16: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:16: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Succeeded","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"2020-05-13T11:16:41.8906945Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '648' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A16%3A41.8925446Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}],"provisioningState":"Succeeded","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_478edce2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1547' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17:08 GMT + etag: + - W/"datetime'2020-05-13T11%3A16%3A41.8925446Z'" + 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: '{"location": "westus2", "properties": {"fileSystemId": "5867f2fd-b6b9-19a1-8979-62a2b6572cda"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + Content-Length: + - '95' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '662' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-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: + - '1194' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8","name":"64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8","status":"Succeeded","startTime":"2020-05-13T11:17:16.6857657Z","endTime":"2020-05-13T11:17:19.3108784Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles snapshot list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}]}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '760' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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 + CommandName: + - netappfiles snapshot show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:17: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: 'b''{"location": "westus2", "properties": {"creationToken": "cli-sn-2000007", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "e8c0af0d-2d80-120f-9100-ad4d28073bd8", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '443' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A18%3A01.4180486Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '956' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:18:02 GMT + etag: + - W/"datetime'2020-05-13T11%3A18%3A01.4180486Z'" + 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-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:18: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:20: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:20: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Succeeded","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"2020-05-13T11:21:27.3986787Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '648' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A21%3A27.4053959Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","fileSystemId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}],"provisioningState":"Succeeded","fileSystemId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","name":"cli-sn-2000007","serviceLevel":"Premium","creationToken":"cli-sn-2000007","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_955fe00183474412a263ec0f52d2aeeb_478edce2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1547' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:21:35 GMT + etag: + - W/"datetime'2020-05-13T11%3A21%3A27.4053959Z'" + 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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml index 50c08db7853..95f8fa3fc9a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n --subscription -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-000007?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-subnet000007?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007","name":"cli-rg-000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007","name":"cli-rg-subnet000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '298' + - '246' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:54 GMT + - Wed, 13 May 2020 11:09:18 GMT expires: - '-1' pragma: @@ -44,7 +44,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -67,19 +67,19 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"5a01f990-436f-48ae-9a44-4d903ece2f62\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n + \ \"etag\": \"W/\\\"16ea7a2f-be6e-40e5-8748-033614e60352\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"ab51461f-3eeb-4a36-8fc4-3311792eb945\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -88,7 +88,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21325271-6b72-4820-8c30-fa0c19af9714?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6bce2398-f0dd-4a94-8839-26e3016da9d4?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -96,7 +96,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:02 GMT + - Wed, 13 May 2020 11:09:24 GMT expires: - '-1' pragma: @@ -109,9 +109,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 287e2ec8-64b0-4e52-ae5c-a5131294d0ed + - ec1b12bd-298d-4275-923c-0105aa0edd3a x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -129,10 +129,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21325271-6b72-4820-8c30-fa0c19af9714?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6bce2398-f0dd-4a94-8839-26e3016da9d4?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -144,7 +144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:06 GMT + - Wed, 13 May 2020 11:09:29 GMT expires: - '-1' pragma: @@ -161,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54da0d3c-f058-48f7-b30a-ae09f182ebc7 + - 98c00d35-e629-475c-b60f-a5445089bcf4 status: code: 200 message: OK @@ -179,17 +179,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7cfe49ba-b3e8-4fb0-bbd3-cddcd66050ae\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n + \ \"etag\": \"W/\\\"7278ab61-ea6c-4606-a16f-0edfd41bc99a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ab51461f-3eeb-4a36-8fc4-3311792eb945\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -202,9 +202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:06 GMT + - Wed, 13 May 2020 11:09:30 GMT etag: - - W/"7cfe49ba-b3e8-4fb0-bbd3-cddcd66050ae" + - W/"7278ab61-ea6c-4606-a16f-0edfd41bc99a" expires: - '-1' pragma: @@ -221,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 121ef127-2655-46e3-804d-012ea12e0920 + - 0c419331-7ffd-4493-b7c1-e0625a7e6f0d status: code: 200 message: OK @@ -239,19 +239,19 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7cfe49ba-b3e8-4fb0-bbd3-cddcd66050ae\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n + \ \"etag\": \"W/\\\"7278ab61-ea6c-4606-a16f-0edfd41bc99a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ab51461f-3eeb-4a36-8fc4-3311792eb945\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -264,9 +264,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:07 GMT + - Wed, 13 May 2020 11:09:31 GMT etag: - - W/"7cfe49ba-b3e8-4fb0-bbd3-cddcd66050ae" + - W/"7278ab61-ea6c-4606-a16f-0edfd41bc99a" expires: - '-1' pragma: @@ -283,12 +283,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5166b4a6-a512-43f9-a746-482a8344a85c + - 02cd8a78-c281-4522-b6fd-3d69eb052d47 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": @@ -311,29 +311,29 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"01c372fc-1d4f-4078-a907-f05f2bc779bb\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n + \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"ab51461f-3eeb-4a36-8fc4-3311792eb945\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"01c372fc-1d4f-4078-a907-f05f2bc779bb\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n + \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"01c372fc-1d4f-4078-a907-f05f2bc779bb\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n + \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -346,7 +346,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b257f2ce-0a16-4f06-8698-54f311c63af5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4ed3e56-df85-4d0d-b9cb-64b6263cce26?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -354,7 +354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:08 GMT + - Wed, 13 May 2020 11:09:32 GMT expires: - '-1' pragma: @@ -371,9 +371,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b744710-0dad-434d-ad99-76d260f8c730 + - 11c93095-1dd8-4f5c-897e-744603a3f1c5 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -391,10 +391,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b257f2ce-0a16-4f06-8698-54f311c63af5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4ed3e56-df85-4d0d-b9cb-64b6263cce26?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:12 GMT + - Wed, 13 May 2020 11:09:36 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ca549b81-d2d9-4c41-9145-4b09546a5e46 + - a307a71b-f909-402c-a118-edec2f9b902b status: code: 200 message: OK @@ -441,27 +441,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"2f42b381-a059-45ac-85bc-7b4643c89d58\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n + \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ab51461f-3eeb-4a36-8fc4-3311792eb945\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"2f42b381-a059-45ac-85bc-7b4643c89d58\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n + \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"2f42b381-a059-45ac-85bc-7b4643c89d58\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n + \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -480,9 +480,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:13 GMT + - Wed, 13 May 2020 11:09:36 GMT etag: - - W/"2f42b381-a059-45ac-85bc-7b4643c89d58" + - W/"d94a5820-f363-49e3-b92d-a89821e9c7a2" expires: - '-1' pragma: @@ -499,12 +499,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e905e646-4138-43e9-9530-8e50ac0a9d48 + - 54abd4d1-f718-45ba-8389-259cf27d3e06 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -515,36 +515,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A15.9884745Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A42.5829547Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/26cd8506-f984-4a5b-bd96-3486767122cd?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/255c2cc1-251d-4795-950f-7cd11186d08a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:16 GMT + - Wed, 13 May 2020 11:09:43 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A15.9884745Z'" + - W/"datetime'2020-05-13T11%3A09%3A42.5829547Z'" expires: - '-1' pragma: @@ -558,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -578,24 +578,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26cd8506-f984-4a5b-bd96-3486767122cd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/255c2cc1-251d-4795-950f-7cd11186d08a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26cd8506-f984-4a5b-bd96-3486767122cd","name":"26cd8506-f984-4a5b-bd96-3486767122cd","status":"Succeeded","startTime":"2020-04-08T03:24:15.9406843Z","endTime":"2020-04-08T03:24:16.0500414Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/255c2cc1-251d-4795-950f-7cd11186d08a","name":"255c2cc1-251d-4795-950f-7cd11186d08a","status":"Succeeded","startTime":"2020-05-13T11:09:42.1315068Z","endTime":"2020-05-13T11:09:43.3660078Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:48 GMT + - Wed, 13 May 2020 11:10:14 GMT expires: - '-1' pragma: @@ -631,26 +631,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A16.0525212Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A43.2586073Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:48 GMT + - Wed, 13 May 2020 11:10:15 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A16.0525212Z'" + - W/"datetime'2020-05-13T11%3A09%3A43.2586073Z'" expires: - '-1' pragma: @@ -673,7 +673,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -685,36 +685,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A18.8088648Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A25.1751309Z''\"","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/westus2/operationResults/10c8251b-c729-4bdd-95e5-51df01960cdf?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c53211a8-cac1-4a66-8924-2f06632491a6?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:20 GMT + - Wed, 13 May 2020 11:10:25 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A18.8088648Z'" + - W/"datetime'2020-05-13T11%3A10%3A25.1751309Z'" expires: - '-1' pragma: @@ -728,7 +728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -748,24 +748,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c8251b-c729-4bdd-95e5-51df01960cdf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c53211a8-cac1-4a66-8924-2f06632491a6?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10c8251b-c729-4bdd-95e5-51df01960cdf","name":"10c8251b-c729-4bdd-95e5-51df01960cdf","status":"Succeeded","startTime":"2020-04-08T03:25:18.7420572Z","endTime":"2020-04-08T03:25:19.0389312Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c53211a8-cac1-4a66-8924-2f06632491a6","name":"c53211a8-cac1-4a66-8924-2f06632491a6","status":"Succeeded","startTime":"2020-05-13T11:10:24.5814272Z","endTime":"2020-05-13T11:10:26.112683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:50 GMT + - Wed, 13 May 2020 11:10:57 GMT expires: - '-1' pragma: @@ -801,26 +801,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A19.0310254Z''\"","location":"westus2","properties":{"poolId":"d1e7c669-f1b2-d1e1-2cde-971261f22618","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A26.005933Z''\"","location":"westus2stage","properties":{"poolId":"2aaed334-01e1-1a90-49b8-93a106296c27","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '654' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:50 GMT + - Wed, 13 May 2020 11:10:58 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A19.0310254Z'" + - W/"datetime'2020-05-13T11%3A10%3A26.005933Z'" expires: - '-1' pragma: @@ -843,8 +843,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + body: '{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: Accept: - application/json @@ -855,37 +855,37 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '349' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A57.1725824Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A05.669423Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 cache-control: - no-cache content-length: - - '859' + - '863' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:57 GMT + - Wed, 13 May 2020 11:11:06 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A57.1725824Z'" + - W/"datetime'2020-05-13T11%3A11%3A05.669423Z'" expires: - '-1' pragma: @@ -899,7 +899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' x-powered-by: - ASP.NET status: @@ -920,132 +920,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:30 GMT + - Wed, 13 May 2020 11:11:37 GMT expires: - '-1' pragma: @@ -1082,24 +974,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:00 GMT + - Wed, 13 May 2020 11:12:08 GMT expires: - '-1' pragma: @@ -1136,24 +1028,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:31 GMT + - Wed, 13 May 2020 11:12:38 GMT expires: - '-1' pragma: @@ -1190,24 +1082,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:01 GMT + - Wed, 13 May 2020 11:13:08 GMT expires: - '-1' pragma: @@ -1244,24 +1136,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:32 GMT + - Wed, 13 May 2020 11:13:39 GMT expires: - '-1' pragma: @@ -1298,24 +1190,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:02 GMT + - Wed, 13 May 2020 11:14:09 GMT expires: - '-1' pragma: @@ -1352,24 +1244,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:32 GMT + - Wed, 13 May 2020 11:14:40 GMT expires: - '-1' pragma: @@ -1406,24 +1298,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:03 GMT + - Wed, 13 May 2020 11:15:10 GMT expires: - '-1' pragma: @@ -1460,24 +1352,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Succeeded","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"2020-05-13T11:15:17.3356152Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:34 GMT + - Wed, 13 May 2020 11:15:41 GMT expires: - '-1' pragma: @@ -1514,24 +1406,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A15%3A17.1654668Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","fileSystemId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_0c6a3a50","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1507' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:04 GMT + - Wed, 13 May 2020 11:15:43 GMT + etag: + - W/"datetime'2020-05-13T11%3A15%3A17.1654668Z'" expires: - '-1' pragma: @@ -1561,33 +1455,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '' 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/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 08 Apr 2020 03:32:35 GMT + - Wed, 13 May 2020 11:15:48 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1596,17 +1495,15 @@ 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-deletes: + - '14997' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1615,31 +1512,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:05 GMT + - Wed, 13 May 2020 11:16:19 GMT expires: - '-1' pragma: @@ -1669,31 +1565,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:36 GMT + - Wed, 13 May 2020 11:16:49 GMT expires: - '-1' pragma: @@ -1723,31 +1618,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:07 GMT + - Wed, 13 May 2020 11:17:20 GMT expires: - '-1' pragma: @@ -1777,31 +1671,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:37 GMT + - Wed, 13 May 2020 11:17:50 GMT expires: - '-1' pragma: @@ -1831,31 +1724,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:07 GMT + - Wed, 13 May 2020 11:18:21 GMT expires: - '-1' pragma: @@ -1885,31 +1777,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:39 GMT + - Wed, 13 May 2020 11:18:52 GMT expires: - '-1' pragma: @@ -1939,31 +1830,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:09 GMT + - Wed, 13 May 2020 11:19:22 GMT expires: - '-1' pragma: @@ -1993,31 +1883,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:39 GMT + - Wed, 13 May 2020 11:19:52 GMT expires: - '-1' pragma: @@ -2047,31 +1936,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:37:10 GMT + - Wed, 13 May 2020 11:20:23 GMT expires: - '-1' pragma: @@ -2101,31 +1989,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:37:41 GMT + - Wed, 13 May 2020 11:20:53 GMT expires: - '-1' pragma: @@ -2155,31 +2042,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:11 GMT + - Wed, 13 May 2020 11:21:23 GMT expires: - '-1' pragma: @@ -2209,31 +2095,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:42 GMT + - Wed, 13 May 2020 11:21:55 GMT expires: - '-1' pragma: @@ -2263,31 +2148,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:12 GMT + - Wed, 13 May 2020 11:22:25 GMT expires: - '-1' pragma: @@ -2317,31 +2201,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:43 GMT + - Wed, 13 May 2020 11:22:55 GMT expires: - '-1' pragma: @@ -2371,31 +2254,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:14 GMT + - Wed, 13 May 2020 11:23:26 GMT expires: - '-1' pragma: @@ -2425,31 +2307,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Succeeded","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"2020-05-13T11:23:30.524515Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '652' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:44 GMT + - Wed, 13 May 2020 11:23:55 GMT expires: - '-1' pragma: @@ -2479,3304 +2360,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-subnet000007?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '637' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 08 Apr 2020 03:41:15 GMT + - Wed, 13 May 2020 11:24: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:43: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:43: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:44: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:44: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:45: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:45: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:47: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:47: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:48: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:48: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:49: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:49: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:50: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:50: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:51: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:51: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:52: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:52: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:53: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:54: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:54: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:55: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Creating","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:55: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44fdb93a-39ae-4bda-b79f-e52f8d0337c5","name":"44fdb93a-39ae-4bda-b79f-e52f8d0337c5","status":"Succeeded","startTime":"2020-04-08T03:25:57.1304687Z","endTime":"2020-04-08T03:55:39.5233869Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:56: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A55%3A39.5198112Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ff85c636-e48b-ffa2-6ede-44246400be72","fileSystemId":"ff85c636-e48b-ffa2-6ede-44246400be72","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"ff85c636-e48b-ffa2-6ede-44246400be72","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_cca28725","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1502' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:56:02 GMT - etag: - - W/"datetime'2020-04-08T03%3A55%3A39.5198112Z'" - 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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Apr 2020 03:56:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-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-deletes: - - '14997' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:56: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:57: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:57: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:58: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:58: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:59: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:59: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:00: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:00: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:01: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:01: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:02: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:02: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:03: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:03: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:04: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:04: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:05: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:05: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:06: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:06: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:07: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:07: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:08: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:09: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:09: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Deleting","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:10: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f5b382-88b1-4002-86c9-5bcc9d3318d9","name":"37f5b382-88b1-4002-86c9-5bcc9d3318d9","status":"Succeeded","startTime":"2020-04-08T03:56:06.2267786Z","endTime":"2020-04-08T04:10:25.7698467Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:10: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 - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --yes -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-000007?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Apr 2020 04:10:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -5784,48 +2395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --yes -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Apr 2020 04:11:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '14999' status: code: 202 message: Accepted @@ -5843,10 +2413,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -5856,11 +2426,11 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:11:25 GMT + - Wed, 13 May 2020 11:24:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -5884,10 +2454,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -5897,11 +2467,11 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:11:40 GMT + - Wed, 13 May 2020 11:24:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -5925,10 +2495,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -5938,11 +2508,11 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:11:56 GMT + - Wed, 13 May 2020 11:24:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -5966,10 +2536,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -5979,11 +2549,11 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:12:11 GMT + - Wed, 13 May 2020 11:25:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -6007,10 +2577,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -6020,11 +2590,11 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:12:27 GMT + - Wed, 13 May 2020 11:25:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -6048,10 +2618,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/8.0.1 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFZKUk5WN1FINkoyRjJKRkZILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -6061,7 +2631,7 @@ interactions: content-length: - '0' date: - - Wed, 08 Apr 2020 04:12:42 GMT + - Wed, 13 May 2020 11:25:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml index 9a9f5429746..c3acf7911c2 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7a5d42cb-23c6-41f6-85f3-730fb75aba58\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6824ddf6-8842-48a4-9d97-3d686b2f47e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0a363718-9647-4691-b024-2fa36d78667c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df7316ee-f2f9-42f6-bed8-77492094dbaa?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e636ed53-6a58-4247-b98d-0295299b98d7?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:25 GMT + - Wed, 13 May 2020 11:22:48 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1618a24f-d932-4160-b921-1f44f79c7392 + - 03a9eeb6-0d3d-4570-8a47-9306e91f591e x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df7316ee-f2f9-42f6-bed8-77492094dbaa?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e636ed53-6a58-4247-b98d-0295299b98d7?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:29 GMT + - Wed, 13 May 2020 11:22:52 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 866e8aeb-19c9-4d35-a3b6-e602adb4e6bc + - d3afc0d2-6a9f-4a9b-8204-ba200752efdf status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"1268644d-055e-4cfd-8c1b-0cdd7a7bb772\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7637e252-d373-4f8b-8735-a53fec032bde\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0a363718-9647-4691-b024-2fa36d78667c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:30 GMT + - Wed, 13 May 2020 11:22:52 GMT etag: - - W/"1268644d-055e-4cfd-8c1b-0cdd7a7bb772" + - W/"7637e252-d373-4f8b-8735-a53fec032bde" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96370871-09a7-4add-9a82-0dbffb3be4f1 + - 6b71657c-456e-4838-913b-39919cc28521 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"1268644d-055e-4cfd-8c1b-0cdd7a7bb772\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7637e252-d373-4f8b-8735-a53fec032bde\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0a363718-9647-4691-b024-2fa36d78667c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:31 GMT + - Wed, 13 May 2020 11:22:53 GMT etag: - - W/"1268644d-055e-4cfd-8c1b-0cdd7a7bb772" + - W/"7637e252-d373-4f8b-8735-a53fec032bde" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b98051a0-0f70-481b-a75c-30778909e42c + - 1e8932a7-6152-435a-b56d-5928edbc9c90 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"f473d79b-7b0a-4b43-a9fc-cc9338ba1a07\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0a363718-9647-4691-b024-2fa36d78667c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"f473d79b-7b0a-4b43-a9fc-cc9338ba1a07\\\"\",\r\n + \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"f473d79b-7b0a-4b43-a9fc-cc9338ba1a07\\\"\",\r\n + \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/53bcb065-e293-45ba-b469-2433e7aa4d72?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f18146e7-4fe4-41bd-8644-9d00e933a387?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:32 GMT + - Wed, 13 May 2020 11:22:54 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - deffa497-490a-4b72-852b-994bc955d5f4 + - ffad4784-8d21-4add-b63c-33e95a518be0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/53bcb065-e293-45ba-b469-2433e7aa4d72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f18146e7-4fe4-41bd-8644-9d00e933a387?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:36 GMT + - Wed, 13 May 2020 11:22:58 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4177cca9-a635-40d4-82c1-679aa13ce311 + - 4ecfe5eb-146f-4c5e-af6c-5a82ffcc9bec status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"4bbb7b90-e479-491a-abfb-c9af22ad8515\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0a363718-9647-4691-b024-2fa36d78667c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"4bbb7b90-e479-491a-abfb-c9af22ad8515\\\"\",\r\n + \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"4bbb7b90-e479-491a-abfb-c9af22ad8515\\\"\",\r\n + \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:36 GMT + - Wed, 13 May 2020 11:22:59 GMT etag: - - W/"4bbb7b90-e479-491a-abfb-c9af22ad8515" + - W/"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0cddcdc3-8b94-4b50-b35c-649f9e390270 + - bd700386-6da1-41f3-9a22-e27a6d7f6d81 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A41.0272162Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A23%3A06.9561101Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/11b8fbd5-8b5c-457e-b0a0-5902a676e34b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:41 GMT + - Wed, 13 May 2020 11:23:07 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A41.0272162Z'" + - W/"datetime'2020-05-13T11%3A23%3A06.9561101Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11b8fbd5-8b5c-457e-b0a0-5902a676e34b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/11b8fbd5-8b5c-457e-b0a0-5902a676e34b","name":"11b8fbd5-8b5c-457e-b0a0-5902a676e34b","status":"Succeeded","startTime":"2020-04-08T03:23:40.937134Z","endTime":"2020-04-08T03:23:41.0933194Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a","name":"7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a","status":"Succeeded","startTime":"2020-05-13T11:23:06.5211932Z","endTime":"2020-05-13T11:23:07.7402476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:13 GMT + - Wed, 13 May 2020 11:23:40 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A41.0922628Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A23%3A07.6337637Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:13 GMT + - Wed, 13 May 2020 11:23:40 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A41.0922628Z'" + - W/"datetime'2020-05-13T11%3A23%3A07.6337637Z'" expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A18.1490354Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A23%3A48.9626409Z''\"","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/westus2/operationResults/218c7115-fe82-4300-aef5-684c59a5224f?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36359bc7-08dd-4cc2-acc1-aa809d8c9d90?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:19 GMT + - Wed, 13 May 2020 11:23:49 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A18.1490354Z'" + - W/"datetime'2020-05-13T11%3A23%3A48.9626409Z'" expires: - '-1' pragma: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/218c7115-fe82-4300-aef5-684c59a5224f?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36359bc7-08dd-4cc2-acc1-aa809d8c9d90?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/218c7115-fe82-4300-aef5-684c59a5224f","name":"218c7115-fe82-4300-aef5-684c59a5224f","status":"Succeeded","startTime":"2020-04-08T03:24:18.0887084Z","endTime":"2020-04-08T03:24:18.3245009Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36359bc7-08dd-4cc2-acc1-aa809d8c9d90","name":"36359bc7-08dd-4cc2-acc1-aa809d8c9d90","status":"Succeeded","startTime":"2020-05-13T11:23:48.54273Z","endTime":"2020-05-13T11:23:49.9489587Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:49 GMT + - Wed, 13 May 2020 11:24:21 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A18.3241624Z''\"","location":"westus2","properties":{"poolId":"06d4bebd-beb0-0e6c-018b-a906f654153a","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A23%3A49.8374846Z''\"","location":"westus2stage","properties":{"poolId":"4cef1dde-8d2c-00b1-8fc8-964966c44ceb","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:49 GMT + - Wed, 13 May 2020 11:24:22 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A18.3241624Z'" + - W/"datetime'2020-05-13T11%3A23%3A49.8374846Z'" expires: - '-1' pragma: @@ -794,7 +794,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -806,37 +806,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '400' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A19.0310254Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A24%3A31.348539Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '914' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:20 GMT + - Wed, 13 May 2020 11:24:32 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A19.0310254Z'" + - W/"datetime'2020-05-13T11%3A24%3A31.348539Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' x-powered-by: - ASP.NET status: @@ -871,78 +871,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:21 GMT + - Wed, 13 May 2020 11:25:03 GMT expires: - '-1' pragma: @@ -979,24 +925,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:51 GMT + - Wed, 13 May 2020 11:25:33 GMT expires: - '-1' pragma: @@ -1033,24 +979,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:22 GMT + - Wed, 13 May 2020 11:26:04 GMT expires: - '-1' pragma: @@ -1087,24 +1033,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:52 GMT + - Wed, 13 May 2020 11:26:35 GMT expires: - '-1' pragma: @@ -1141,24 +1087,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:22 GMT + - Wed, 13 May 2020 11:27:05 GMT expires: - '-1' pragma: @@ -1195,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:54 GMT + - Wed, 13 May 2020 11:27:36 GMT expires: - '-1' pragma: @@ -1249,24 +1195,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:24 GMT + - Wed, 13 May 2020 11:28:06 GMT expires: - '-1' pragma: @@ -1303,24 +1249,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:54 GMT + - Wed, 13 May 2020 11:28:36 GMT expires: - '-1' pragma: @@ -1357,24 +1303,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:25 GMT + - Wed, 13 May 2020 11:29:09 GMT expires: - '-1' pragma: @@ -1411,24 +1357,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Succeeded","startTime":"2020-05-13T11:24:30.736773Z","endTime":"2020-05-13T11:29:09.6462001Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '652' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:55 GMT + - Wed, 13 May 2020 11:29:39 GMT expires: - '-1' pragma: @@ -1465,24 +1411,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A09.4674433Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1558' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:25 GMT + - Wed, 13 May 2020 11:29:40 GMT + etag: + - W/"datetime'2020-05-13T11%3A29%3A09.4674433Z'" expires: - '-1' pragma: @@ -1512,31 +1460,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A09.4674433Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1558' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:56 GMT + - Wed, 13 May 2020 11:29:42 GMT + etag: + - W/"datetime'2020-05-13T11%3A29%3A09.4674433Z'" expires: - '-1' pragma: @@ -1559,92 +1511,50 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, + "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": + false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, + {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, + "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '389' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A47.3411951Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1673' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:56 GMT + - Wed, 13 May 2020 11:29:51 GMT + etag: + - W/"datetime'2020-05-13T11%3A29%3A47.3411951Z'" expires: - '-1' pragma: @@ -1661,6 +1571,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1192' x-powered-by: - ASP.NET status: @@ -1674,31 +1586,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A51.3070461Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1673' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:26 GMT + - Wed, 13 May 2020 11:29:53 GMT + etag: + - W/"datetime'2020-05-13T11%3A29%3A51.3070461Z'" expires: - '-1' pragma: @@ -1721,1696 +1637,52 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, + "exportPolicy": {"rules": [{"ruleIndex": 2, "unixReadOnly": true, "unixReadWrite": + false, "cifs": true, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.4.0/24"}, + {"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": false, "cifs": false, + "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, {"ruleIndex": + 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, + "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '531' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A56.4900753Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1801' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:36: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:37: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:38: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:39: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:43: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:43: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:44: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:44: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:45: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:45: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Creating","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af7637ab-8490-489f-bf9b-07eb767a8578","name":"af7637ab-8490-489f-bf9b-07eb767a8578","status":"Succeeded","startTime":"2020-04-08T03:25:18.8228534Z","endTime":"2020-04-08T03:46:32.1846171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A32.1815473Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1553' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46:41 GMT - etag: - - W/"datetime'2020-04-08T03%3A46%3A32.1815473Z'" - 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 - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A32.1815473Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1553' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46:43 GMT - etag: - - W/"datetime'2020-04-08T03%3A46%3A32.1815473Z'" - 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: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": - false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, - {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - Content-Length: - - '389' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A45.632261Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1667' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46:48 GMT - etag: - - W/"datetime'2020-04-08T03%3A46%3A45.632261Z'" - 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-ratelimit-remaining-subscription-writes: - - '1190' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A48.8475842Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1668' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46:50 GMT - etag: - - W/"datetime'2020-04-08T03%3A46%3A48.8475842Z'" - 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: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 2, "unixReadOnly": true, "unixReadWrite": - false, "cifs": true, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.4.0/24"}, - {"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": false, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, {"ruleIndex": - 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, - "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - Content-Length: - - '531' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A53.2047333Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1796' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46:55 GMT - etag: - - W/"datetime'2020-04-08T03%3A46%3A53.2047333Z'" + - Wed, 13 May 2020 11:30:00 GMT + etag: + - W/"datetime'2020-05-13T11%3A29%3A56.4900753Z'" expires: - '-1' pragma: @@ -3428,7 +1700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1193' x-powered-by: - ASP.NET status: @@ -3448,28 +1720,28 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A56.2609419Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A59.5330247Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1801' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:57 GMT + - Wed, 13 May 2020 11:30:00 GMT etag: - - W/"datetime'2020-04-08T03%3A46%3A56.2609419Z'" + - W/"datetime'2020-05-13T11%3A29%3A59.5330247Z'" expires: - '-1' pragma: @@ -3505,28 +1777,28 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A46%3A56.2609419Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A59.5330247Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1801' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:59 GMT + - Wed, 13 May 2020 11:30:03 GMT etag: - - W/"datetime'2020-04-08T03%3A46%3A56.2609419Z'" + - W/"datetime'2020-05-13T11%3A29%3A59.5330247Z'" expires: - '-1' pragma: @@ -3549,17 +1821,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "0f824147-3150-d43a-0464-de3ab1f83319", - "fileSystemId": "0f824147-3150-d43a-0464-de3ab1f83319", "startIp": "10.0.0.7", - "endIp": "10.0.0.7", "gateway": "", "netmask": "", "subnet": "", "ipAddress": - "10.0.0.7"}]}}''' + "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "21c462b7-0df0-b6d4-479c-275b0b3e084a", + "fileSystemId": "21c462b7-0df0-b6d4-479c-275b0b3e084a", "startIp": "10.0.0.4", + "endIp": "10.0.0.4", "gateway": "", "netmask": "", "subnet": "", "ipAddress": + "10.0.0.4"}]}}''' headers: Accept: - application/json @@ -3570,34 +1842,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1017' + - '1022' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A47%3A02.1862238Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f824147-3150-d43a-0464-de3ab1f83319","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}],"provisioningState":"Succeeded","fileSystemId":"0f824147-3150-d43a-0464-de3ab1f83319","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1b06a783","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A30%3A06.8741494Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1668' + - '1673' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:03 GMT + - Wed, 13 May 2020 11:30:10 GMT etag: - - W/"datetime'2020-04-08T03%3A47%3A02.1862238Z'" + - W/"datetime'2020-05-13T11%3A30%3A06.8741494Z'" expires: - '-1' pragma: @@ -3615,7 +1887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1189' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml index 4f4cccb021b..37b4d140f97 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"291c4520-79ce-47c0-b956-34902c2219c3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f9e831c-5567-4f8b-ae73-e7a3f9a3cbc1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4cb19877-e1ba-4335-8dca-0453729a5317\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1454a772-cc68-4c2e-95a9-f1d960e8304f?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4473bd9a-0596-4038-9d23-c770ac250211?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:03 GMT + - Wed, 13 May 2020 11:07:05 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f45339c-9f3a-40c2-9dcd-f977bd3edf03 + - 9d440689-82ac-4ee4-9a58-5de7074ce29b x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1454a772-cc68-4c2e-95a9-f1d960e8304f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4473bd9a-0596-4038-9d23-c770ac250211?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:07 GMT + - Wed, 13 May 2020 11:07:10 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d88f006c-64f6-44e0-8853-cca665ad4e55 + - 98070e49-2aea-4505-9204-9d7253e61f2f status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"bf6e4ca3-507a-461c-b762-18a1b67e6d5b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3ba07527-503a-4a23-aec9-f9bfd534a3c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4cb19877-e1ba-4335-8dca-0453729a5317\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:07 GMT + - Wed, 13 May 2020 11:07:10 GMT etag: - - W/"bf6e4ca3-507a-461c-b762-18a1b67e6d5b" + - W/"3ba07527-503a-4a23-aec9-f9bfd534a3c4" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7674f7cf-c386-41f8-ac45-305bb06095da + - 319649b8-946b-4639-9c16-b87532a08a80 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"bf6e4ca3-507a-461c-b762-18a1b67e6d5b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3ba07527-503a-4a23-aec9-f9bfd534a3c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4cb19877-e1ba-4335-8dca-0453729a5317\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:08 GMT + - Wed, 13 May 2020 11:07:11 GMT etag: - - W/"bf6e4ca3-507a-461c-b762-18a1b67e6d5b" + - W/"3ba07527-503a-4a23-aec9-f9bfd534a3c4" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 524cec2e-2d4d-487b-bd7e-dc32b5c0fe11 + - d8841e4d-fe01-4fb1-8c6e-193dbb70c8ab status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"b236b4f3-9e20-40bc-bf72-9ae68c13998e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4cb19877-e1ba-4335-8dca-0453729a5317\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"b236b4f3-9e20-40bc-bf72-9ae68c13998e\\\"\",\r\n + \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"b236b4f3-9e20-40bc-bf72-9ae68c13998e\\\"\",\r\n + \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/82495bd7-3a28-4cd9-a428-46c01eee435d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f4b011e-9c48-4010-bece-2faee12f18cb?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:09 GMT + - Wed, 13 May 2020 11:07:12 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea492fe5-cf44-480d-bbb7-5d3b89a63c49 + - d09cfb6a-0911-4a7b-9e09-48083ec2618a x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/82495bd7-3a28-4cd9-a428-46c01eee435d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f4b011e-9c48-4010-bece-2faee12f18cb?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:14 GMT + - Wed, 13 May 2020 11:07:16 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b885a91e-13c2-4347-8530-78a34cc7beb0 + - b7df5212-72b6-4eef-86ad-851f54197dcd status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"ca827e0b-b224-4c83-8cb9-2e701fc3642a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4cb19877-e1ba-4335-8dca-0453729a5317\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"ca827e0b-b224-4c83-8cb9-2e701fc3642a\\\"\",\r\n + \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"ca827e0b-b224-4c83-8cb9-2e701fc3642a\\\"\",\r\n + \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:14 GMT + - Wed, 13 May 2020 11:07:16 GMT etag: - - W/"ca827e0b-b224-4c83-8cb9-2e701fc3642a" + - W/"baed626e-2230-4b60-b8de-150ac4eed3fe" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0e7933f-2c59-4ca3-9cfe-8981efbfa46d + - 6192b08d-d94b-4d81-8e4f-33f6b38a3b95 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A23.010549Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A24.6979115Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/aff2b4f1-7e34-4245-ab42-27153df7d3ae?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4?api-version=2019-10-01 cache-control: - no-cache content-length: - - '451' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:23 GMT + - Wed, 13 May 2020 11:07:25 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A23.010549Z'" + - W/"datetime'2020-05-13T11%3A07%3A24.6979115Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aff2b4f1-7e34-4245-ab42-27153df7d3ae?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aff2b4f1-7e34-4245-ab42-27153df7d3ae","name":"aff2b4f1-7e34-4245-ab42-27153df7d3ae","status":"Succeeded","startTime":"2020-04-08T03:24:22.9653381Z","endTime":"2020-04-08T03:24:23.0747812Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4","name":"8e3d6515-5a7d-4aa3-95ee-93651d7a00c4","status":"Succeeded","startTime":"2020-05-13T11:07:24.2725112Z","endTime":"2020-05-13T11:07:25.4756262Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:53 GMT + - Wed, 13 May 2020 11:07:57 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A23.0745949Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A25.3715608Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:54 GMT + - Wed, 13 May 2020 11:07:58 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A23.0745949Z'" + - W/"datetime'2020-05-13T11%3A07%3A25.3715608Z'" expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 8796093022208, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 8796093022208, "serviceLevel": "Standard"}}' headers: Accept: @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A01.7075065Z''\"","location":"westus2","properties":{"serviceLevel":"Standard","size":8796093022208,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A06.2359922Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","size":8796093022208,"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/westus2/operationResults/8f4c5c88-d8de-4682-b469-a8f4fa1235c4?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/513c347e-bc3d-4fad-9828-371ed74c739d?api-version=2019-10-01 cache-control: - no-cache content-length: - - '543' + - '548' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:03 GMT + - Wed, 13 May 2020 11:08:07 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A01.7075065Z'" + - W/"datetime'2020-05-13T11%3A08%3A06.2359922Z'" expires: - '-1' pragma: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f4c5c88-d8de-4682-b469-a8f4fa1235c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/513c347e-bc3d-4fad-9828-371ed74c739d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f4c5c88-d8de-4682-b469-a8f4fa1235c4","name":"8f4c5c88-d8de-4682-b469-a8f4fa1235c4","status":"Succeeded","startTime":"2020-04-08T03:25:01.6038036Z","endTime":"2020-04-08T03:25:01.9318938Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/513c347e-bc3d-4fad-9828-371ed74c739d","name":"513c347e-bc3d-4fad-9828-371ed74c739d","status":"Succeeded","startTime":"2020-05-13T11:08:05.8179902Z","endTime":"2020-05-13T11:08:07.2155664Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:34 GMT + - Wed, 13 May 2020 11:09:05 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A25%3A01.9236632Z''\"","location":"westus2","properties":{"poolId":"bd057264-2d75-2811-6231-91be42ebed42","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A07.1038284Z''\"","location":"westus2stage","properties":{"poolId":"d8b9c9ed-a315-439e-56f4-12b3a1f6189c","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '651' + - '656' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:34 GMT + - Wed, 13 May 2020 11:09:06 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A01.9236632Z'" + - W/"datetime'2020-05-13T11%3A08%3A07.1038284Z'" expires: - '-1' pragma: @@ -794,7 +794,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Standard", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -806,37 +806,37 @@ interactions: Connection: - keep-alive Content-Length: - - '396' + - '401' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A39.8610722Z''\"","location":"westus2","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A13.702088Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 cache-control: - no-cache content-length: - - '911' + - '915' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:40 GMT + - Wed, 13 May 2020 11:09:14 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A39.8610722Z'" + - W/"datetime'2020-05-13T11%3A09%3A13.702088Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -871,186 +871,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:27: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:43 GMT + - Wed, 13 May 2020 11:09:45 GMT expires: - '-1' pragma: @@ -1087,24 +925,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:13 GMT + - Wed, 13 May 2020 11:10:15 GMT expires: - '-1' pragma: @@ -1141,24 +979,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:44 GMT + - Wed, 13 May 2020 11:10:46 GMT expires: - '-1' pragma: @@ -1195,24 +1033,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:15 GMT + - Wed, 13 May 2020 11:11:16 GMT expires: - '-1' pragma: @@ -1249,24 +1087,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:45 GMT + - Wed, 13 May 2020 11:11:46 GMT expires: - '-1' pragma: @@ -1303,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Succeeded","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"2020-05-13T11:12:10.3039924Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:15 GMT + - Wed, 13 May 2020 11:12:17 GMT expires: - '-1' pragma: @@ -1357,24 +1195,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A10.1229665Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1559' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:46 GMT + - Wed, 13 May 2020 11:12:18 GMT + etag: + - W/"datetime'2020-05-13T11%3A12%3A10.1229665Z'" expires: - '-1' pragma: @@ -1404,31 +1244,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A10.1229665Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1559' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:17 GMT + - Wed, 13 May 2020 11:12:22 GMT + etag: + - W/"datetime'2020-05-13T11%3A12%3A10.1229665Z'" expires: - '-1' pragma: @@ -1451,596 +1295,50 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"serviceLevel": "Standard", "usageThreshold": 214748364800, + "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": + false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, + {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, + "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume export-policy add Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '390' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:31: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write + --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A26.0674368Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1674' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Creating","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05d3192c-b69e-4175-bac0-3a1deccd341d","name":"05d3192c-b69e-4175-bac0-3a1deccd341d","status":"Succeeded","startTime":"2020-04-08T03:25:39.8040837Z","endTime":"2020-04-08T03:34:53.4927199Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A34%3A53.4850581Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f9813462-ef2d-6604-ef07-35d0048e8719","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_0c0e9848","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1554' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35:21 GMT - etag: - - W/"datetime'2020-04-08T03%3A34%3A53.4850581Z'" - 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 - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A34%3A53.4850581Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f9813462-ef2d-6604-ef07-35d0048e8719","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_0c0e9848","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1554' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35:24 GMT - etag: - - W/"datetime'2020-04-08T03%3A34%3A53.4850581Z'" - 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: '{"properties": {"serviceLevel": "Standard", "usageThreshold": 214748364800, - "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": - false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, - {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume export-policy add - Connection: - - keep-alive - Content-Length: - - '390' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write - --cifs --nfsv3 --nfsv41 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A35%3A26.2977642Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f9813462-ef2d-6604-ef07-35d0048e8719","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"f9813462-ef2d-6604-ef07-35d0048e8719","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_0c0e9848","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1669' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35:28 GMT - etag: - - W/"datetime'2020-04-08T03%3A35%3A26.2977642Z'" + - Wed, 13 May 2020 11:12:30 GMT + etag: + - W/"datetime'2020-05-13T11%3A12%3A26.0674368Z'" expires: - '-1' pragma: @@ -2058,7 +1356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml index 13fcedb6b2e..e8aca2afd9e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "westus2"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '23' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.9672216Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6115557Z''\"","location":"westus2","properties":{"name":"cli000002","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/3690423b-8b98-4ed3-a360-0cde9e4326ad?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '452' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:22:32 GMT + - Wed, 13 May 2020 11:04:54 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A32.9672216Z'" + - W/"datetime'2020-05-13T11%3A04%3A52.6115557Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3690423b-8b98-4ed3-a360-0cde9e4326ad?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3690423b-8b98-4ed3-a360-0cde9e4326ad","name":"3690423b-8b98-4ed3-a360-0cde9e4326ad","status":"Succeeded","startTime":"2020-02-20T15:22:32.3806534Z","endTime":"2020-02-20T15:22:33.7799207Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f","name":"72a66b07-adb9-45a5-9507-7c9b62f3781f","status":"Succeeded","startTime":"2020-05-13T11:04:52.5489639Z","endTime":"2020-05-13T11:04:52.6739832Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:24 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '453' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:24 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" + - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '453' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:06 GMT + - Wed, 13 May 2020 11:05:27 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" + - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" expires: - '-1' pragma: @@ -239,28 +239,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '453' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:07 GMT + - Wed, 13 May 2020 11:05:31 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" + - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml index 6276a90bcc8..bcd03a6be08 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml @@ -17,30 +17,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.1506933Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A33.6745725Z''\"","location":"westus2stage","properties":{"name":"cli000002","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/e2c14d26-a796-48d9-af3c-a547eab3be39?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c8059da9-50dd-4e71-8a98-09a8529c0a89?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:12 GMT + - Wed, 13 May 2020 11:07:34 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.1506933Z'" + - W/"datetime'2020-05-13T11%3A07%3A33.6745725Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -74,13 +74,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2c14d26-a796-48d9-af3c-a547eab3be39?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c8059da9-50dd-4e71-8a98-09a8529c0a89?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2c14d26-a796-48d9-af3c-a547eab3be39","name":"e2c14d26-a796-48d9-af3c-a547eab3be39","status":"Succeeded","startTime":"2020-02-20T15:35:11.6968748Z","endTime":"2020-02-20T15:35:12.9740838Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c8059da9-50dd-4e71-8a98-09a8529c0a89","name":"c8059da9-50dd-4e71-8a98-09a8529c0a89","status":"Succeeded","startTime":"2020-05-13T11:07:33.2107856Z","endTime":"2020-05-13T11:07:34.4453841Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:08:05 GMT expires: - '-1' pragma: @@ -127,13 +127,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.8253278Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A34.3482223Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:43 GMT + - Wed, 13 May 2020 11:08:06 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A12.8253278Z'" + - W/"datetime'2020-05-13T11%3A07%3A34.3482223Z'" expires: - '-1' pragma: @@ -187,20 +187,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A47.4969005Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A15.9623754Z''\"","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/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32706263-5caa-427e-93ab-a772f275fbde?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -208,9 +208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:47 GMT + - Wed, 13 May 2020 11:08:17 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A47.4969005Z'" + - W/"datetime'2020-05-13T11%3A08%3A15.9623754Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -244,13 +244,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32706263-5caa-427e-93ab-a772f275fbde?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9","name":"c2ca803e-2ce8-48b1-b97c-180f5cafd7a9","status":"Succeeded","startTime":"2020-02-20T15:35:47.0776059Z","endTime":"2020-02-20T15:35:48.5004365Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32706263-5caa-427e-93ab-a772f275fbde","name":"32706263-5caa-427e-93ab-a772f275fbde","status":"Succeeded","startTime":"2020-05-13T11:08:15.4720414Z","endTime":"2020-05-13T11:08:17.2219371Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:19 GMT + - Wed, 13 May 2020 11:09:06 GMT expires: - '-1' pragma: @@ -297,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:19 GMT + - Wed, 13 May 2020 11:09:06 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" + - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" expires: - '-1' pragma: @@ -352,28 +352,28 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:21 GMT + - Wed, 13 May 2020 11:09:08 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" + - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" expires: - '-1' pragma: @@ -409,28 +409,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:23 GMT + - Wed, 13 May 2020 11:09:11 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" + - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml index 922d1b70f25..147bc52c69a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"fcf95bc5-428a-45c5-9252-39eb36f6672b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5de44a7e-b33f-4e40-bddc-41f2454adc81\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7cca9a1d-4801-4a1e-a482-e30892f486c1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/45cb5008-0881-464d-985e-54db83d93b84?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0347abbd-d01b-4205-b8ef-9796e0867178?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:41 GMT + - Wed, 13 May 2020 11:08:22 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c8eee2f-9254-49a0-a5a7-3cb014785bd1 + - 491d64c6-ac4b-456a-b33c-2475d071f0fd x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/45cb5008-0881-464d-985e-54db83d93b84?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0347abbd-d01b-4205-b8ef-9796e0867178?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:45 GMT + - Wed, 13 May 2020 11:08:26 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 87f3eac4-9480-424d-b55f-fc27c749a301 + - c35959d9-bddc-48fa-9f01-92cc7e0cd46b status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"22aa014c-c7af-4682-9d77-56874eaa2b7f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7cca9a1d-4801-4a1e-a482-e30892f486c1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:45 GMT + - Wed, 13 May 2020 11:08:27 GMT etag: - - W/"22aa014c-c7af-4682-9d77-56874eaa2b7f" + - W/"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - efb5ae2d-2943-44fa-b12f-63314c215fc6 + - e1164b6b-77a6-413d-bc2b-4001fe06ef08 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"22aa014c-c7af-4682-9d77-56874eaa2b7f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7cca9a1d-4801-4a1e-a482-e30892f486c1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:47 GMT + - Wed, 13 May 2020 11:08:29 GMT etag: - - W/"22aa014c-c7af-4682-9d77-56874eaa2b7f" + - W/"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00e652c3-8c44-48fb-bf4f-ef0feadb1c39 + - 588625c5-4ff6-4cb7-8096-2245f2110db5 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"0a2bb223-fb32-4ad0-8bd6-5bede5b4ffa5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7cca9a1d-4801-4a1e-a482-e30892f486c1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"0a2bb223-fb32-4ad0-8bd6-5bede5b4ffa5\\\"\",\r\n + \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"0a2bb223-fb32-4ad0-8bd6-5bede5b4ffa5\\\"\",\r\n + \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/521c1b0b-c353-42c3-99ab-c92eda7ed18a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d5726c41-177d-42f8-8135-10e64d1353db?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:47 GMT + - Wed, 13 May 2020 11:08:30 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c637019-3a8a-4582-91a0-a16f508cb11d + - 821a3224-c137-45ca-9c39-57bce597e117 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/521c1b0b-c353-42c3-99ab-c92eda7ed18a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d5726c41-177d-42f8-8135-10e64d1353db?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:51 GMT + - Wed, 13 May 2020 11:08:33 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9cb41b28-0e8c-479a-ab62-0760c09f40c3 + - 420361a0-d038-413a-957f-e78bbf86ee49 status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"bcddfeb9-36a2-42ff-ba18-a98d0a88ae2d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7cca9a1d-4801-4a1e-a482-e30892f486c1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"bcddfeb9-36a2-42ff-ba18-a98d0a88ae2d\\\"\",\r\n + \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"bcddfeb9-36a2-42ff-ba18-a98d0a88ae2d\\\"\",\r\n + \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:51 GMT + - Wed, 13 May 2020 11:08:34 GMT etag: - - W/"bcddfeb9-36a2-42ff-ba18-a98d0a88ae2d" + - W/"e59ea649-db33-4753-b2da-a54742694bc7" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de1aafb3-ae93-4c03-a2fa-88cdecfc485b + - 1723c212-2b9d-4924-94c5-12da9866ee20 status: code: 200 message: OK @@ -472,30 +472,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T05%3A13%3A57.1948135Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A08%3A40.1211917Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/e3437bd9-666d-44d6-88cb-1a5944c35136?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44?api-version=2019-10-01 cache-control: - no-cache content-length: - - '453' + - '452' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:13:58 GMT + - Wed, 13 May 2020 11:08:41 GMT etag: - - W/"datetime'2020-04-08T05%3A13%3A57.1948135Z'" + - W/"datetime'2020-05-13T11%3A08%3A40.1211917Z'" expires: - '-1' pragma: @@ -529,13 +529,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e3437bd9-666d-44d6-88cb-1a5944c35136?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e3437bd9-666d-44d6-88cb-1a5944c35136","name":"e3437bd9-666d-44d6-88cb-1a5944c35136","status":"Succeeded","startTime":"2020-04-08T05:13:57.1267074Z","endTime":"2020-04-08T05:13:57.2517306Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44","name":"cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44","status":"Succeeded","startTime":"2020-05-13T11:08:40.0547543Z","endTime":"2020-05-13T11:08:40.1797402Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:14:29 GMT + - Wed, 13 May 2020 11:09:12 GMT expires: - '-1' pragma: @@ -582,13 +582,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T05%3A13%3A57.2548578Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A08%3A40.1792326Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:14:29 GMT + - Wed, 13 May 2020 11:09:12 GMT etag: - - W/"datetime'2020-04-08T05%3A13%3A57.2548578Z'" + - W/"datetime'2020-05-13T11%3A08%3A40.1792326Z'" expires: - '-1' pragma: @@ -642,20 +642,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T05%3A14%3A35.5555285Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A17.7919552Z''\"","location":"westus2","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/westus2/operationResults/4c7768a9-7835-41fa-9f5b-d15dec235d99?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:14:36 GMT + - Wed, 13 May 2020 11:09:18 GMT etag: - - W/"datetime'2020-04-08T05%3A14%3A35.5555285Z'" + - W/"datetime'2020-05-13T11%3A09%3A17.7919552Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -699,13 +699,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c7768a9-7835-41fa-9f5b-d15dec235d99?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c7768a9-7835-41fa-9f5b-d15dec235d99","name":"4c7768a9-7835-41fa-9f5b-d15dec235d99","status":"Succeeded","startTime":"2020-04-08T05:14:35.4992864Z","endTime":"2020-04-08T05:14:35.7336731Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739","name":"cde91088-fd4d-45d7-8cec-ba7216c4d739","status":"Succeeded","startTime":"2020-05-13T11:09:17.7349706Z","endTime":"2020-05-13T11:09:18.0631634Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:15:08 GMT + - Wed, 13 May 2020 11:09:49 GMT expires: - '-1' pragma: @@ -752,13 +752,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T05%3A14%3A35.7406623Z''\"","location":"westus2","properties":{"poolId":"2edc9701-c29f-4bf6-9f8e-012ea55a9850","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A18.0581441Z''\"","location":"westus2","properties":{"poolId":"2948e88f-2164-81e3-5d3a-c9253dc5b78e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:15:08 GMT + - Wed, 13 May 2020 11:09:50 GMT etag: - - W/"datetime'2020-04-08T05%3A14%3A35.7406623Z'" + - W/"datetime'2020-05-13T11%3A09%3A18.0581441Z'" expires: - '-1' pragma: @@ -813,20 +813,20 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T05%3A15%3A16.3069779Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A56.0901655Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:15:16 GMT + - Wed, 13 May 2020 11:09:57 GMT etag: - - W/"datetime'2020-04-08T05%3A15%3A16.3069779Z'" + - W/"datetime'2020-05-13T11%3A09%3A56.0901655Z'" expires: - '-1' pragma: @@ -871,13 +871,67 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 11:10: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Creating","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -888,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:15:48 GMT + - Wed, 13 May 2020 11:10:58 GMT expires: - '-1' pragma: @@ -925,13 +979,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Creating","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -942,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:16:19 GMT + - Wed, 13 May 2020 11:11:29 GMT expires: - '-1' pragma: @@ -979,13 +1033,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Creating","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:16:49 GMT + - Wed, 13 May 2020 11:11:59 GMT expires: - '-1' pragma: @@ -1033,13 +1087,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Creating","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:17:19 GMT + - Wed, 13 May 2020 11:12:30 GMT expires: - '-1' pragma: @@ -1087,13 +1141,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Creating","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:17:50 GMT + - Wed, 13 May 2020 11:13:00 GMT expires: - '-1' pragma: @@ -1141,24 +1195,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cb6216-2f52-4d77-b0ab-40f228e15f8c","name":"27cb6216-2f52-4d77-b0ab-40f228e15f8c","status":"Succeeded","startTime":"2020-04-08T05:15:16.2408581Z","endTime":"2020-04-08T05:18:15.178233Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Succeeded","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"2020-05-13T11:13:20.5608882Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '648' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:18:20 GMT + - Wed, 13 May 2020 11:13:30 GMT expires: - '-1' pragma: @@ -1195,13 +1249,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T05%3A18%3A15.1691852Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"62e66bb1-2980-cac5-3e51-242376d74b35","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_02290b57","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A13%3A20.5670542Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}],"provisioningState":"Succeeded","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_71264ff4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,9 +1266,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:18:21 GMT + - Wed, 13 May 2020 11:13:30 GMT etag: - - W/"datetime'2020-04-08T05%3A18%3A15.1691852Z'" + - W/"datetime'2020-05-13T11%3A13%3A20.5670542Z'" expires: - '-1' pragma: @@ -1237,7 +1291,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "62e66bb1-2980-cac5-3e51-242376d74b35"}}' + body: '{"location": "westus2", "properties": {"fileSystemId": "7f09bd3f-4a71-7795-9486-4004dc850bd5"}}' headers: Accept: - application/json @@ -1254,20 +1308,20 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71b4fbdb-2d6c-4efe-b7be-4cdb0feda0f5?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -1275,11 +1329,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:18:30 GMT + - Wed, 13 May 2020 11:13:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71b4fbdb-2d6c-4efe-b7be-4cdb0feda0f5?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1291,7 +1345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' x-powered-by: - ASP.NET status: @@ -1311,13 +1365,13 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71b4fbdb-2d6c-4efe-b7be-4cdb0feda0f5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71b4fbdb-2d6c-4efe-b7be-4cdb0feda0f5","name":"71b4fbdb-2d6c-4efe-b7be-4cdb0feda0f5","status":"Succeeded","startTime":"2020-04-08T05:18:28.7904213Z","endTime":"2020-04-08T05:18:30.9710498Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb","name":"3c4a8d49-62d9-466a-9328-6fa185755efb","status":"Succeeded","startTime":"2020-05-13T11:13:38.9606903Z","endTime":"2020-05-13T11:13:41.4447636Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -1328,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:19:01 GMT + - Wed, 13 May 2020 11:14:11 GMT expires: - '-1' pragma: @@ -1364,13 +1418,13 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"af84f5bd-55e7-90e0-0954-d73d8380b722","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","name":"cli-sn-000005","created":"2020-04-08T05:18:28Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1381,7 +1435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:19:01 GMT + - Wed, 13 May 2020 11:14:11 GMT expires: - '-1' pragma: @@ -1417,15 +1471,15 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"af84f5bd-55e7-90e0-0954-d73d8380b722","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","name":"cli-sn-000005","created":"2020-04-08T05:18:28Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1436,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:19:04 GMT + - Wed, 13 May 2020 11:14:13 GMT expires: - '-1' pragma: @@ -1472,15 +1526,15 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"af84f5bd-55e7-90e0-0954-d73d8380b722","fileSystemId":"62e66bb1-2980-cac5-3e51-242376d74b35","name":"cli-sn-000005","created":"2020-04-08T05:18:28Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1491,7 +1545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 05:19:07 GMT + - Wed, 13 May 2020 11:14:15 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml index 60927fe17e2..55a362df5ee 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"6d093200-a289-4f77-b3fb-c466377c6dc0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5c19fd45-a895-4ad2-85d3-98ea80b25fc8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8eb61f37-3e11-4195-9efe-21d3bd5cf6b9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c4e8e5ff-244c-48eb-bedc-a98b319bb4bc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ff98b3b-09e7-4e9e-ae74-e0b9b21a9ba2?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:50 GMT + - Wed, 13 May 2020 11:12:42 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6fbb7a8-823c-4784-917f-a335160ffea5 + - 53e11552-917c-471c-9879-2f83f340e706 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c4e8e5ff-244c-48eb-bedc-a98b319bb4bc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ff98b3b-09e7-4e9e-ae74-e0b9b21a9ba2?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:54 GMT + - Wed, 13 May 2020 11:12:46 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 427c807f-8ece-40c2-a675-0a7d790ea4ba + - 9b15b5ad-eb53-42d6-a8ee-dbdb5225fb91 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"763aae8f-4a63-425e-a4ce-972766e95cc4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"28abcf23-fa17-4a39-80d6-b5b3d123bd14\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8eb61f37-3e11-4195-9efe-21d3bd5cf6b9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:54 GMT + - Wed, 13 May 2020 11:12:46 GMT etag: - - W/"763aae8f-4a63-425e-a4ce-972766e95cc4" + - W/"28abcf23-fa17-4a39-80d6-b5b3d123bd14" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e318fc18-a64f-446a-b2bd-8e6a79ca15cb + - 205a389c-58be-40c7-9082-b48c6b7a9972 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"763aae8f-4a63-425e-a4ce-972766e95cc4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"28abcf23-fa17-4a39-80d6-b5b3d123bd14\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8eb61f37-3e11-4195-9efe-21d3bd5cf6b9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:55 GMT + - Wed, 13 May 2020 11:12:48 GMT etag: - - W/"763aae8f-4a63-425e-a4ce-972766e95cc4" + - W/"28abcf23-fa17-4a39-80d6-b5b3d123bd14" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68e786ab-e421-4e8f-9501-af8280088b7c + - 6a4a6b69-963c-4118-9a0a-7c6bfc34a705 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"8bf20df1-4658-4910-88ca-2e7311c520b7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8eb61f37-3e11-4195-9efe-21d3bd5cf6b9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"8bf20df1-4658-4910-88ca-2e7311c520b7\\\"\",\r\n + \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"8bf20df1-4658-4910-88ca-2e7311c520b7\\\"\",\r\n + \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4d468407-3cc4-4296-9332-9994ee202852?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e4e87d8-c761-4b5c-9cef-50a072b298b9?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:56 GMT + - Wed, 13 May 2020 11:12:49 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a3fe657-5c7f-416d-855f-c214e69345d6 + - 561c1973-411d-4bd2-a3c3-193d0c269b7c x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4d468407-3cc4-4296-9332-9994ee202852?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e4e87d8-c761-4b5c-9cef-50a072b298b9?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:59 GMT + - Wed, 13 May 2020 11:12:53 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb987d1d-294f-4ed4-82cd-c47b29b8cbef + - c2adae82-621e-41ad-ae85-1d79b11cde2b status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a0b40af4-538d-4028-8def-f9d3b29266b1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8eb61f37-3e11-4195-9efe-21d3bd5cf6b9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"a0b40af4-538d-4028-8def-f9d3b29266b1\\\"\",\r\n + \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"a0b40af4-538d-4028-8def-f9d3b29266b1\\\"\",\r\n + \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:00 GMT + - Wed, 13 May 2020 11:12:54 GMT etag: - - W/"a0b40af4-538d-4028-8def-f9d3b29266b1" + - W/"49bc0106-fb77-4c22-9d42-0d0d601788de" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b293163-7562-4efd-b58d-186d710e9f4f + - f35bb3ae-693b-4240-895a-04660aab2a72 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A04.8674443Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A13%3A01.7280439Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/6b34f4e2-9b62-45e1-a6a5-141eb6b52e39?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/03989390-17c0-4f0e-80d9-b00edf14c999?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:06 GMT + - Wed, 13 May 2020 11:13:03 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A04.8674443Z'" + - W/"datetime'2020-05-13T11%3A13%3A01.7280439Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6b34f4e2-9b62-45e1-a6a5-141eb6b52e39?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/03989390-17c0-4f0e-80d9-b00edf14c999?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6b34f4e2-9b62-45e1-a6a5-141eb6b52e39","name":"6b34f4e2-9b62-45e1-a6a5-141eb6b52e39","status":"Succeeded","startTime":"2020-04-08T03:24:04.7617007Z","endTime":"2020-04-08T03:24:04.9335927Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/03989390-17c0-4f0e-80d9-b00edf14c999","name":"03989390-17c0-4f0e-80d9-b00edf14c999","status":"Succeeded","startTime":"2020-05-13T11:13:01.2397201Z","endTime":"2020-05-13T11:13:02.492181Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '580' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:36 GMT + - Wed, 13 May 2020 11:13:34 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A24%3A04.9344924Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A13%3A02.3906876Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:36 GMT + - Wed, 13 May 2020 11:13:35 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A04.9344924Z'" + - W/"datetime'2020-05-13T11%3A13%3A02.3906876Z'" expires: - '-1' pragma: @@ -624,8 +624,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag2": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag2": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A40.9715281Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A13%3A44.3904404Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"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/westus2/operationResults/5fdb21a0-987c-4130-aad3-7cc467556937?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/290fbaeb-05df-4215-a8c7-ff9643dc2fbb?api-version=2019-10-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:41 GMT + - Wed, 13 May 2020 11:13:45 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A40.9715281Z'" + - W/"datetime'2020-05-13T11%3A13%3A44.3904404Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fdb21a0-987c-4130-aad3-7cc467556937?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/290fbaeb-05df-4215-a8c7-ff9643dc2fbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fdb21a0-987c-4130-aad3-7cc467556937","name":"5fdb21a0-987c-4130-aad3-7cc467556937","status":"Succeeded","startTime":"2020-04-08T03:24:40.9234778Z","endTime":"2020-04-08T03:24:41.4546993Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/290fbaeb-05df-4215-a8c7-ff9643dc2fbb","name":"290fbaeb-05df-4215-a8c7-ff9643dc2fbb","status":"Succeeded","startTime":"2020-05-13T11:13:43.7258638Z","endTime":"2020-05-13T11:13:45.4289893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:12 GMT + - Wed, 13 May 2020 11:14:17 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A41.4508745Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"poolId":"a16cd873-1070-8dff-a7ba-0c347d76b72d","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A13%3A45.2883123Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"poolId":"c8f5cd9b-6d69-5bde-1677-52c867e3773f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:13 GMT + - Wed, 13 May 2020 11:14:17 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A41.4508745Z'" + - W/"datetime'2020-05-13T11%3A13%3A45.2883123Z'" expires: - '-1' pragma: @@ -794,11 +794,11 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag2": "Value1"}, "properties": {"creationToken": - "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": - true, "cifs": false, "nfsv3": false, "nfsv41": true, "allowedClients": "0.0.0.0/0"}]}, - "protocolTypes": ["NFSv4.1"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' + body: 'b''{"location": "westus2stage", "tags": {"Tag2": "Value1"}, "properties": + {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 1, "unixReadOnly": false, + "unixReadWrite": true, "cifs": false, "nfsv3": false, "nfsv41": true, "allowedClients": + "0.0.0.0/0"}]}, "protocolTypes": ["NFSv4.1"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: - application/json @@ -809,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '624' + - '629' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A21.6949509Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A14%3A28.6063469Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1118' + - '1123' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:22 GMT + - Wed, 13 May 2020 11:14:29 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A21.6949509Z'" + - W/"datetime'2020-05-13T11%3A14%3A28.6063469Z'" expires: - '-1' pragma: @@ -853,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -874,1698 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:27: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:27: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:28: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:28: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:29: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:30: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:30: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:31: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:36: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:38: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:39: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:39: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:41:42 GMT + - Wed, 13 May 2020 11:15:00 GMT expires: - '-1' pragma: @@ -2602,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:12 GMT + - Wed, 13 May 2020 11:15:31 GMT expires: - '-1' pragma: @@ -2656,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:43 GMT + - Wed, 13 May 2020 11:16:01 GMT expires: - '-1' pragma: @@ -2710,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:14 GMT + - Wed, 13 May 2020 11:16:31 GMT expires: - '-1' pragma: @@ -2764,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:44 GMT + - Wed, 13 May 2020 11:17:03 GMT expires: - '-1' pragma: @@ -2818,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:16 GMT + - Wed, 13 May 2020 11:17:32 GMT expires: - '-1' pragma: @@ -2872,24 +1198,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:45 GMT + - Wed, 13 May 2020 11:18:03 GMT expires: - '-1' pragma: @@ -2926,24 +1252,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:16 GMT + - Wed, 13 May 2020 11:18:33 GMT expires: - '-1' pragma: @@ -2980,24 +1306,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:47 GMT + - Wed, 13 May 2020 11:19:03 GMT expires: - '-1' pragma: @@ -3034,24 +1360,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:17 GMT + - Wed, 13 May 2020 11:19:34 GMT expires: - '-1' pragma: @@ -3088,24 +1414,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:48 GMT + - Wed, 13 May 2020 11:20:04 GMT expires: - '-1' pragma: @@ -3142,24 +1468,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:18 GMT + - Wed, 13 May 2020 11:20:35 GMT expires: - '-1' pragma: @@ -3196,24 +1522,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:48 GMT + - Wed, 13 May 2020 11:21:05 GMT expires: - '-1' pragma: @@ -3250,24 +1576,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:48:19 GMT + - Wed, 13 May 2020 11:21:36 GMT expires: - '-1' pragma: @@ -3304,24 +1630,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:48:50 GMT + - Wed, 13 May 2020 11:22:07 GMT expires: - '-1' pragma: @@ -3358,24 +1684,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:49:20 GMT + - Wed, 13 May 2020 11:22:37 GMT expires: - '-1' pragma: @@ -3412,24 +1738,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:49:51 GMT + - Wed, 13 May 2020 11:23:08 GMT expires: - '-1' pragma: @@ -3466,24 +1792,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:50:22 GMT + - Wed, 13 May 2020 11:23:38 GMT expires: - '-1' pragma: @@ -3520,24 +1846,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:50:52 GMT + - Wed, 13 May 2020 11:24:08 GMT expires: - '-1' pragma: @@ -3574,24 +1900,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:23 GMT + - Wed, 13 May 2020 11:24:39 GMT expires: - '-1' pragma: @@ -3628,24 +1954,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:53 GMT + - Wed, 13 May 2020 11:25:09 GMT expires: - '-1' pragma: @@ -3682,24 +2008,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:24 GMT + - Wed, 13 May 2020 11:25:40 GMT expires: - '-1' pragma: @@ -3736,24 +2062,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:54 GMT + - Wed, 13 May 2020 11:26:10 GMT expires: - '-1' pragma: @@ -3790,24 +2116,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:25 GMT + - Wed, 13 May 2020 11:26:40 GMT expires: - '-1' pragma: @@ -3844,24 +2170,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:56 GMT + - Wed, 13 May 2020 11:27:10 GMT expires: - '-1' pragma: @@ -3898,24 +2224,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:26 GMT + - Wed, 13 May 2020 11:27:41 GMT expires: - '-1' pragma: @@ -3952,24 +2278,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:57 GMT + - Wed, 13 May 2020 11:28:11 GMT expires: - '-1' pragma: @@ -4006,24 +2332,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:55:28 GMT + - Wed, 13 May 2020 11:28:43 GMT expires: - '-1' pragma: @@ -4060,24 +2386,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:55:57 GMT + - Wed, 13 May 2020 11:29:13 GMT expires: - '-1' pragma: @@ -4114,24 +2440,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:29 GMT + - Wed, 13 May 2020 11:29:43 GMT expires: - '-1' pragma: @@ -4168,24 +2494,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:59 GMT + - Wed, 13 May 2020 11:30:14 GMT expires: - '-1' pragma: @@ -4222,24 +2548,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:57:29 GMT + - Wed, 13 May 2020 11:30:44 GMT expires: - '-1' pragma: @@ -4276,24 +2602,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:58:00 GMT + - Wed, 13 May 2020 11:31:14 GMT expires: - '-1' pragma: @@ -4330,24 +2656,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:58:31 GMT + - Wed, 13 May 2020 11:31:44 GMT expires: - '-1' pragma: @@ -4384,24 +2710,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:59:01 GMT + - Wed, 13 May 2020 11:32:15 GMT expires: - '-1' pragma: @@ -4438,24 +2764,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:59:32 GMT + - Wed, 13 May 2020 11:32:45 GMT expires: - '-1' pragma: @@ -4492,24 +2818,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:00:02 GMT + - Wed, 13 May 2020 11:33:15 GMT expires: - '-1' pragma: @@ -4546,24 +2872,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:00:32 GMT + - Wed, 13 May 2020 11:33:46 GMT expires: - '-1' pragma: @@ -4600,24 +2926,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:01:04 GMT + - Wed, 13 May 2020 11:34:16 GMT expires: - '-1' pragma: @@ -4654,24 +2980,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Creating","startTime":"2020-04-08T03:25:21.636285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:01:34 GMT + - Wed, 13 May 2020 11:34:48 GMT expires: - '-1' pragma: @@ -4708,24 +3034,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e4441bf-1993-4f46-9116-033815c4db60","name":"6e4441bf-1993-4f46-9116-033815c4db60","status":"Succeeded","startTime":"2020-04-08T03:25:21.636285Z","endTime":"2020-04-08T04:01:56.3879816Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Succeeded","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"2020-05-13T11:35:12.9299403Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:04 GMT + - Wed, 13 May 2020 11:35:18 GMT expires: - '-1' pragma: @@ -4762,26 +3088,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A01%3A56.3870905Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8d05f981-ea89-1f33-995b-22851c2cf478","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","startIp":"10.0.0.8","endIp":"10.0.0.8","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.8"}],"provisioningState":"Succeeded","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e7ae5a00","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1579' + - '1584' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:05 GMT + - Wed, 13 May 2020 11:35:19 GMT etag: - - W/"datetime'2020-04-08T04%3A01%3A56.3870905Z'" + - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" expires: - '-1' pragma: @@ -4817,28 +3143,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A01%3A56.3870905Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8d05f981-ea89-1f33-995b-22851c2cf478","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","startIp":"10.0.0.8","endIp":"10.0.0.8","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.8"}],"provisioningState":"Succeeded","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e7ae5a00","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1579' + - '1584' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:08 GMT + - Wed, 13 May 2020 11:35:21 GMT etag: - - W/"datetime'2020-04-08T04%3A01%3A56.3870905Z'" + - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" expires: - '-1' pragma: @@ -4874,28 +3200,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A01%3A56.3870905Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8d05f981-ea89-1f33-995b-22851c2cf478","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","startIp":"10.0.0.8","endIp":"10.0.0.8","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.8"}],"provisioningState":"Succeeded","fileSystemId":"8d05f981-ea89-1f33-995b-22851c2cf478","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e7ae5a00","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1579' + - '1584' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:10 GMT + - Wed, 13 May 2020 11:35:23 GMT etag: - - W/"datetime'2020-04-08T04%3A01%3A56.3870905Z'" + - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml index 719281bfeca..f78f08bd55e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '51' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.3846758Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7163413Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","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/6667922e-48a8-43cd-a122-8a5d26bc70cc?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '482' + - '477' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:22:32 GMT + - Wed, 13 May 2020 11:04:55 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A32.3846758Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.7163413Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6667922e-48a8-43cd-a122-8a5d26bc70cc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6667922e-48a8-43cd-a122-8a5d26bc70cc","name":"6667922e-48a8-43cd-a122-8a5d26bc70cc","status":"Succeeded","startTime":"2020-02-20T15:22:31.953629Z","endTime":"2020-02-20T15:22:33.1567396Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3","name":"98c149e2-cc06-4c84-8a09-f541e18511e3","status":"Succeeded","startTime":"2020-05-13T11:04:53.6583476Z","endTime":"2020-05-13T11:04:53.7833352Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '580' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:25 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.0482963Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7793866Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:04 GMT + - Wed, 13 May 2020 11:05:26 GMT etag: - - W/"datetime'2020-02-20T15%3A22%3A33.0482963Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.7793866Z'" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -180,36 +180,36 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '51' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A08.7198136Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.1719529Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","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/c13ad6a4-7e88-4522-b31d-53addde5345b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba?api-version=2019-10-01 cache-control: - no-cache content-length: - - '482' + - '477' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:08 GMT + - Wed, 13 May 2020 11:05:31 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A08.7198136Z'" + - W/"datetime'2020-05-13T11%3A05%3A31.1719529Z'" expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -243,24 +243,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c13ad6a4-7e88-4522-b31d-53addde5345b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c13ad6a4-7e88-4522-b31d-53addde5345b","name":"c13ad6a4-7e88-4522-b31d-53addde5345b","status":"Succeeded","startTime":"2020-02-20T15:23:08.049755Z","endTime":"2020-02-20T15:23:09.6460502Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba","name":"c01f7db1-8a50-4c94-beaa-20a6919ad3ba","status":"Succeeded","startTime":"2020-05-13T11:05:31.1110367Z","endTime":"2020-05-13T11:05:31.2360773Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '580' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:39 GMT + - Wed, 13 May 2020 11:06:01 GMT expires: - '-1' pragma: @@ -296,26 +296,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.5205616Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.2319956Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:40 GMT + - Wed, 13 May 2020 11:06:03 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A09.5205616Z'" + - W/"datetime'2020-05-13T11%3A05%3A31.2319956Z'" expires: - '-1' pragma: @@ -351,26 +351,26 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.5205616Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.0482963Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7793866Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.2319956Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '979' + - '969' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:42 GMT + - Wed, 13 May 2020 11:06:03 GMT expires: - '-1' pragma: @@ -408,8 +408,8 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -421,17 +421,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/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:23:44 GMT + - Wed, 13 May 2020 11:06:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -463,24 +463,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1","name":"42957e38-5411-46d5-83e8-c3a596690ba1","status":"Succeeded","startTime":"2020-02-20T15:23:45.1403748Z","endTime":"2020-02-20T15:23:46.1168747Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0","name":"0750667a-98f3-442f-86aa-2e61090e5bf0","status":"Succeeded","startTime":"2020-05-13T11:06:06.90314Z","endTime":"2020-05-13T11:06:07.0437618Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '574' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:16 GMT + - Wed, 13 May 2020 11:06:37 GMT expires: - '-1' pragma: @@ -518,8 +518,8 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -531,17 +531,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/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:24:19 GMT + - Wed, 13 May 2020 11:06:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -553,7 +553,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -573,24 +573,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3","name":"1674845b-a1cb-4b24-bd33-b3342d455df3","status":"Succeeded","startTime":"2020-02-20T15:24:20.0675181Z","endTime":"2020-02-20T15:24:20.9993153Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791","name":"280491a2-ff59-4d25-a85a-e9f0c5d87791","status":"Succeeded","startTime":"2020-05-13T11:06:41.9082146Z","endTime":"2020-05-13T11:06:42.0332251Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:51 GMT + - Wed, 13 May 2020 11:07:11 GMT expires: - '-1' pragma: @@ -626,8 +626,8 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -643,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:52 GMT + - Wed, 13 May 2020 11:07:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml index 953dac73465..1e5e292094d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml @@ -18,27 +18,28 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"7c68d4df-4b39-41c5-a55a-8ec5e5f9635e\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"9ffcd99f-ad3b-49b2-8c1a-b88839c64005\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21536116-90fd-4180-80f3-ec9d657011d3?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8aedcec4-0743-4c03-abcf-8cfa0eaf49e9?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -46,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:27 GMT + - Wed, 13 May 2020 11:04:55 GMT expires: - '-1' pragma: @@ -59,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74a4a230-599c-4d32-bfec-1fcf5147afe6 + - cd92fcd9-4a73-4837-9455-e6d553aa171d x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -79,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21536116-90fd-4180-80f3-ec9d657011d3?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8aedcec4-0743-4c03-abcf-8cfa0eaf49e9?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -94,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:31 GMT + - Wed, 13 May 2020 11:04:58 GMT expires: - '-1' pragma: @@ -111,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 34143870-d3c6-45c2-b968-467e3dfb993e + - b02a948a-474e-4a9f-a560-39e668a77bc3 status: code: 200 message: OK @@ -129,22 +130,21 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"204389a5-b58c-476a-b93a-de170d94927a\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"5519ee6a-a479-46ea-a966-794a3c041ce8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:32 GMT + - Wed, 13 May 2020 11:04:58 GMT etag: - - W/"204389a5-b58c-476a-b93a-de170d94927a" + - W/"5519ee6a-a479-46ea-a966-794a3c041ce8" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 50536bef-8146-4d4a-a1f6-611349dc1a1b + - 2534f0ce-0d2d-4f5d-8a22-7f5de5218eb6 status: code: 200 message: OK @@ -190,24 +190,23 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"204389a5-b58c-476a-b93a-de170d94927a\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"5519ee6a-a479-46ea-a966-794a3c041ce8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -216,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:34 GMT + - Wed, 13 May 2020 11:04:59 GMT etag: - - W/"204389a5-b58c-476a-b93a-de170d94927a" + - W/"5519ee6a-a479-46ea-a966-794a3c041ce8" expires: - '-1' pragma: @@ -235,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d375f936-b5f2-4904-bb61-60404eacf313 + - 3d48aaad-6922-4aec-8dd8-acc43c2d0ee8 status: code: 200 message: OK @@ -263,43 +262,42 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n + \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5490e1-d704-4607-9837-09429c012aed?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06cbb47a-79fb-4b40-a5f6-01a0bca93bf7?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -307,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:35 GMT + - Wed, 13 May 2020 11:05:01 GMT expires: - '-1' pragma: @@ -324,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 804c9219-88b9-40f8-a308-8ee1ddb3e150 + - b3e85686-8f16-44c3-8034-a25c473c4c62 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -344,10 +342,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5490e1-d704-4607-9837-09429c012aed?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06cbb47a-79fb-4b40-a5f6-01a0bca93bf7?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -359,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:39 GMT + - Wed, 13 May 2020 11:05:05 GMT expires: - '-1' pragma: @@ -376,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8337b94e-a251-4163-b9d1-4625f911620e + - 114d6aa1-254f-430e-a283-bea52cc94a74 status: code: 200 message: OK @@ -394,38 +392,37 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n + \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n + \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -434,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:39 GMT + - Wed, 13 May 2020 11:05:06 GMT etag: - - W/"b4a874e2-d049-41c4-9747-afe9c08dbc54" + - W/"9ca14f49-3e40-4f78-9152-086753c64295" expires: - '-1' pragma: @@ -453,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 90b6e308-afb3-4a6f-811a-3d2ca215ade2 + - 966b405f-ef8a-40a3-9884-bf4767c22a19 status: code: 200 message: OK @@ -475,20 +472,20 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A18%3A46.9398762Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A13.5162961Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","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/d70c1ebc-53f4-42f2-b305-eec536fc410c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ddf53648-613f-42af-af14-7050afd5b3cf?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -496,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:18:47 GMT + - Wed, 13 May 2020 11:05:14 GMT etag: - - W/"datetime'2020-02-19T08%3A18%3A46.9398762Z'" + - W/"datetime'2020-05-13T11%3A05%3A13.5162961Z'" expires: - '-1' pragma: @@ -512,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -532,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d70c1ebc-53f4-42f2-b305-eec536fc410c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ddf53648-613f-42af-af14-7050afd5b3cf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d70c1ebc-53f4-42f2-b305-eec536fc410c","name":"d70c1ebc-53f4-42f2-b305-eec536fc410c","status":"Succeeded","startTime":"2020-02-19T08:18:46.4809557Z","endTime":"2020-02-19T08:18:47.7741686Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ddf53648-613f-42af-af14-7050afd5b3cf","name":"ddf53648-613f-42af-af14-7050afd5b3cf","status":"Succeeded","startTime":"2020-05-13T11:05:13.0919219Z","endTime":"2020-05-13T11:05:14.324398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '572' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:19:18 GMT + - Wed, 13 May 2020 11:05:45 GMT expires: - '-1' pragma: @@ -585,13 +582,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A18%3A47.6605545Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A14.1909515Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -602,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:19:19 GMT + - Wed, 13 May 2020 11:05:46 GMT etag: - - W/"datetime'2020-02-19T08%3A18%3A47.6605545Z'" + - W/"datetime'2020-05-13T11%3A05%3A14.1909515Z'" expires: - '-1' pragma: @@ -645,20 +642,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A19%3A26.5601209Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A54.7090811Z''\"","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/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80635655-5fcb-4fdf-8036-e593d8df6b78?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -666,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:19:27 GMT + - Wed, 13 May 2020 11:05:55 GMT etag: - - W/"datetime'2020-02-19T08%3A19%3A26.5601209Z'" + - W/"datetime'2020-05-13T11%3A05%3A54.7090811Z'" expires: - '-1' pragma: @@ -682,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -702,13 +699,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80635655-5fcb-4fdf-8036-e593d8df6b78?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c","name":"5b4c8ea0-4fad-4133-b767-3c35f2c6a96c","status":"Succeeded","startTime":"2020-02-19T08:19:26.0117711Z","endTime":"2020-02-19T08:19:27.7884893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80635655-5fcb-4fdf-8036-e593d8df6b78","name":"80635655-5fcb-4fdf-8036-e593d8df6b78","status":"Succeeded","startTime":"2020-05-13T11:05:54.2696805Z","endTime":"2020-05-13T11:05:55.7576087Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' headers: access-control-expose-headers: - Request-Context @@ -719,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:19:58 GMT + - Wed, 13 May 2020 11:06:26 GMT expires: - '-1' pragma: @@ -755,13 +752,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A19%3A27.6831788Z''\"","location":"westus2stage","properties":{"poolId":"9d2fdb81-9968-8946-b67a-5e0d97191ca2","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A55.6519913Z''\"","location":"westus2stage","properties":{"poolId":"82fb1e2d-de38-04da-cc23-d10da8095f9f","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -772,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:19:59 GMT + - Wed, 13 May 2020 11:06:27 GMT etag: - - W/"datetime'2020-02-19T08%3A19%3A27.6831788Z'" + - W/"datetime'2020-05-13T11%3A05%3A55.6519913Z'" expires: - '-1' pragma: @@ -816,30 +813,30 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A20%3A08.7427713Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A06%3A35.7937249Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","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/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 cache-control: - no-cache content-length: - - '889' + - '857' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:20:09 GMT + - Wed, 13 May 2020 11:06:37 GMT etag: - - W/"datetime'2020-02-19T08%3A20%3A08.7427713Z'" + - W/"datetime'2020-05-13T11%3A06%3A35.7937249Z'" expires: - '-1' pragma: @@ -853,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -874,24 +871,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:20:40 GMT + - Wed, 13 May 2020 11:07:07 GMT expires: - '-1' pragma: @@ -928,24 +925,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:21:11 GMT + - Wed, 13 May 2020 11:07:37 GMT expires: - '-1' pragma: @@ -982,24 +979,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:21:41 GMT + - Wed, 13 May 2020 11:08:09 GMT expires: - '-1' pragma: @@ -1036,24 +1033,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:22:11 GMT + - Wed, 13 May 2020 11:08:39 GMT expires: - '-1' pragma: @@ -1090,24 +1087,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '618' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:22:43 GMT + - Wed, 13 May 2020 11:09:09 GMT expires: - '-1' pragma: @@ -1144,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Succeeded","startTime":"2020-05-13T11:06:35.367777Z","endTime":"2020-05-13T11:09:22.5368088Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '629' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:23:14 GMT + - Wed, 13 May 2020 11:09:39 GMT expires: - '-1' pragma: @@ -1198,350 +1195,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:23: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:24: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:24: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Succeeded","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"2020-02-19T08:26:00.6509989Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '630' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 19 Feb 2020 08:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A26%3A00.5299521Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","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_cd8798f5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","snapshotDirectoryVisible":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A22.3674499Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","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_fb0467dd8e8011e9a7f006ddec9cd511_ef3850e5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1529' + - '1494' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:26:18 GMT + - Wed, 13 May 2020 11:09:39 GMT etag: - - W/"datetime'2020-02-19T08%3A26%3A00.5299521Z'" + - W/"datetime'2020-05-13T11%3A09%3A22.3674499Z'" expires: - '-1' pragma: @@ -1577,26 +1250,26 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/4ed0173a-1041-7f8d-e8b1-3be59bac61cc","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/4ed0173a-1041-7f8d-e8b1-3be59bac61cc","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '789' + - '786' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Feb 2020 08:26:22 GMT + - Wed, 13 May 2020 11:09:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml index d6d20452a1b..57e6a0f8bc3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml @@ -17,30 +17,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A38%3A17.773084Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A45.7534405Z''\"","location":"westus2stage","properties":{"name":"cli000002","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/8e6c8ba6-681f-402b-a538-446e5c5e0887?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/902a75d6-3c2c-46a2-a0d5-de32f3b43d62?api-version=2019-10-01 cache-control: - no-cache content-length: - - '456' + - '457' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:17 GMT + - Wed, 13 May 2020 11:05:47 GMT etag: - - W/"datetime'2020-02-20T15%3A38%3A17.773084Z'" + - W/"datetime'2020-05-13T11%3A05%3A45.7534405Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e6c8ba6-681f-402b-a538-446e5c5e0887?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/902a75d6-3c2c-46a2-a0d5-de32f3b43d62?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e6c8ba6-681f-402b-a538-446e5c5e0887","name":"8e6c8ba6-681f-402b-a538-446e5c5e0887","status":"Succeeded","startTime":"2020-02-20T15:38:17.3785578Z","endTime":"2020-02-20T15:38:18.5615368Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/902a75d6-3c2c-46a2-a0d5-de32f3b43d62","name":"902a75d6-3c2c-46a2-a0d5-de32f3b43d62","status":"Succeeded","startTime":"2020-05-13T11:05:45.3287208Z","endTime":"2020-05-13T11:05:46.544159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '580' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:49 GMT + - Wed, 13 May 2020 11:06:17 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A38%3A18.455726Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A46.4340968Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:49 GMT + - Wed, 13 May 2020 11:06:18 GMT etag: - - W/"datetime'2020-02-20T15%3A38%3A18.455726Z'" + - W/"datetime'2020-05-13T11%3A05%3A46.4340968Z'" expires: - '-1' pragma: @@ -187,30 +187,30 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A53.2934556Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.11846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/de9884bd-c1ef-47ad-9cbb-804f22323a5e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a98fe98-dd66-4d49-bba1-68c52cf927f2?api-version=2019-10-01 cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:38:53 GMT + - Wed, 13 May 2020 11:06:25 GMT etag: - - W/"datetime'2020-02-20T15%3A38%3A53.2934556Z'" + - W/"datetime'2020-05-13T11%3A06%3A24.11846Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -244,13 +244,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de9884bd-c1ef-47ad-9cbb-804f22323a5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a98fe98-dd66-4d49-bba1-68c52cf927f2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de9884bd-c1ef-47ad-9cbb-804f22323a5e","name":"de9884bd-c1ef-47ad-9cbb-804f22323a5e","status":"Succeeded","startTime":"2020-02-20T15:38:52.8414995Z","endTime":"2020-02-20T15:38:54.2695553Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a98fe98-dd66-4d49-bba1-68c52cf927f2","name":"2a98fe98-dd66-4d49-bba1-68c52cf927f2","status":"Succeeded","startTime":"2020-05-13T11:06:23.7139817Z","endTime":"2020-05-13T11:06:25.0893488Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:39:24 GMT + - Wed, 13 May 2020 11:06:56 GMT expires: - '-1' pragma: @@ -297,13 +297,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A54.1622737Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"569316ac-3bda-8423-db45-04575c3e9161","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.9812907Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"c79e228c-07f7-499c-fcf0-b9ba8d8b6c50","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:39:25 GMT + - Wed, 13 May 2020 11:06:57 GMT etag: - - W/"datetime'2020-02-20T15%3A38%3A54.1622737Z'" + - W/"datetime'2020-05-13T11%3A06%3A24.9812907Z'" expires: - '-1' pragma: @@ -357,30 +357,30 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A28.633659Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A02.2012044Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/00dee926-bbab-4a6e-9ddf-99e614b42e63?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354?api-version=2019-10-01 cache-control: - no-cache content-length: - - '571' + - '572' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:39:28 GMT + - Wed, 13 May 2020 11:07:03 GMT etag: - - W/"datetime'2020-02-20T15%3A39%3A28.633659Z'" + - W/"datetime'2020-05-13T11%3A07%3A02.2012044Z'" expires: - '-1' pragma: @@ -394,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -414,24 +414,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00dee926-bbab-4a6e-9ddf-99e614b42e63?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00dee926-bbab-4a6e-9ddf-99e614b42e63","name":"00dee926-bbab-4a6e-9ddf-99e614b42e63","status":"Succeeded","startTime":"2020-02-20T15:39:28.2306986Z","endTime":"2020-02-20T15:39:29.6216763Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354","name":"06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354","status":"Succeeded","startTime":"2020-05-13T11:07:01.7764671Z","endTime":"2020-05-13T11:07:03.1673Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '620' + - '617' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:39:59 GMT + - Wed, 13 May 2020 11:07:34 GMT expires: - '-1' pragma: @@ -467,13 +467,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A29.4754512Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7b1b2e82-d754-0bb2-eec2-f0190e7730f8","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A03.0640364Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"dcdebf03-d978-96b0-598d-37bbb189d5a7","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -484,9 +484,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:40:00 GMT + - Wed, 13 May 2020 11:07:34 GMT etag: - - W/"datetime'2020-02-20T15%3A39%3A29.4754512Z'" + - W/"datetime'2020-05-13T11%3A07%3A03.0640364Z'" expires: - '-1' pragma: @@ -522,15 +522,15 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A29.4754512Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7b1b2e82-d754-0bb2-eec2-f0190e7730f8","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A54.1622737Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"569316ac-3bda-8423-db45-04575c3e9161","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A03.0640364Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"dcdebf03-d978-96b0-598d-37bbb189d5a7","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.9812907Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"c79e228c-07f7-499c-fcf0-b9ba8d8b6c50","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -541,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:40:02 GMT + - Wed, 13 May 2020 11:07:38 GMT expires: - '-1' pragma: @@ -579,8 +579,8 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -592,17 +592,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/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:40:06 GMT + - Wed, 13 May 2020 11:07:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -634,13 +634,13 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9","name":"17d7fab9-1bb3-4384-9340-9b417c19a8b9","status":"Succeeded","startTime":"2020-02-20T15:40:06.3710852Z","endTime":"2020-02-20T15:40:07.2886739Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1","name":"d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1","status":"Succeeded","startTime":"2020-05-13T11:07:41.7642984Z","endTime":"2020-05-13T11:07:42.6081286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -651,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:40:38 GMT + - Wed, 13 May 2020 11:08:12 GMT expires: - '-1' pragma: @@ -689,8 +689,8 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: DELETE @@ -702,17 +702,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/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Feb 2020 15:40:41 GMT + - Wed, 13 May 2020 11:08:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -724,7 +724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -744,13 +744,13 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3","name":"aa38a0a9-51d8-472b-b97d-fbfdaeba93a3","status":"Succeeded","startTime":"2020-02-20T15:40:41.5496631Z","endTime":"2020-02-20T15:40:42.3299007Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02","name":"8dfd85e7-7af0-41ca-a6c3-34c7242b9a02","status":"Succeeded","startTime":"2020-05-13T11:08:16.0394001Z","endTime":"2020-05-13T11:08:16.7738712Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context @@ -761,7 +761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:41:13 GMT + - Wed, 13 May 2020 11:09:05 GMT expires: - '-1' pragma: @@ -797,8 +797,8 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:41:15 GMT + - Wed, 13 May 2020 11:09:07 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml index 677767e1010..6f92fe46a86 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"a669b695-0318-43c7-bb78-3d30ecafdad2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"12ed0e9d-eef3-4791-b188-5f77fa11f0d4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1b74f949-8d4a-4a24-8216-64cd32abf9b3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/512444c2-48be-4e3b-ace0-a24d4f4a5ea1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21c48953-101b-4e04-ad8c-cdce2c58afc9?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:44 GMT + - Wed, 13 May 2020 11:05:41 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e866292-463b-40dc-987e-1caa93042bc8 + - 962f90b9-66b2-4236-a047-753be9723047 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/512444c2-48be-4e3b-ace0-a24d4f4a5ea1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21c48953-101b-4e04-ad8c-cdce2c58afc9?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:48 GMT + - Wed, 13 May 2020 11:05:45 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1ff47a0-7234-4cca-9dcb-6ed6a138e46d + - f8390d99-cca6-4205-8188-8c450551c463 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d4c4917e-2b7f-441a-8fb0-c9a3ce22b677\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b1455f23-cb06-4751-a2a4-828c483ec814\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1b74f949-8d4a-4a24-8216-64cd32abf9b3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:48 GMT + - Wed, 13 May 2020 11:05:45 GMT etag: - - W/"d4c4917e-2b7f-441a-8fb0-c9a3ce22b677" + - W/"b1455f23-cb06-4751-a2a4-828c483ec814" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e438e37-8ac2-4f8c-9cd2-eb69584d0593 + - 8d49b326-7352-4c64-8828-3f316a9e1a7d status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d4c4917e-2b7f-441a-8fb0-c9a3ce22b677\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b1455f23-cb06-4751-a2a4-828c483ec814\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1b74f949-8d4a-4a24-8216-64cd32abf9b3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:49 GMT + - Wed, 13 May 2020 11:05:47 GMT etag: - - W/"d4c4917e-2b7f-441a-8fb0-c9a3ce22b677" + - W/"b1455f23-cb06-4751-a2a4-828c483ec814" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d71d30ea-5920-442a-837f-11bf017a0605 + - b76a9897-c333-4c66-bf5f-9711e76560ab status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"03123a46-d996-4164-83e3-4f30e6cff3d2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1b74f949-8d4a-4a24-8216-64cd32abf9b3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"03123a46-d996-4164-83e3-4f30e6cff3d2\\\"\",\r\n + \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"03123a46-d996-4164-83e3-4f30e6cff3d2\\\"\",\r\n + \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/387bb07b-793b-4a12-8752-da68416b9e2b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0ec6c0b-10f8-43d2-a228-3f91e192e839?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:50 GMT + - Wed, 13 May 2020 11:05:48 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74553c6b-07ca-48ca-b64b-3918815a7803 + - 5d8b6e07-085e-43a0-b1bb-591f57f14079 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/387bb07b-793b-4a12-8752-da68416b9e2b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0ec6c0b-10f8-43d2-a228-3f91e192e839?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:54 GMT + - Wed, 13 May 2020 11:05:52 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd50be87-e621-4042-aee3-5bb6f8368b2b + - bcc8d590-e52f-4b55-8530-33593835489e status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"2dc30044-aede-4b1e-8001-1ee8f0919fa5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1b74f949-8d4a-4a24-8216-64cd32abf9b3\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"2dc30044-aede-4b1e-8001-1ee8f0919fa5\\\"\",\r\n + \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"2dc30044-aede-4b1e-8001-1ee8f0919fa5\\\"\",\r\n + \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:54 GMT + - Wed, 13 May 2020 11:05:52 GMT etag: - - W/"2dc30044-aede-4b1e-8001-1ee8f0919fa5" + - W/"5b630367-66e5-439f-a50e-95b89b71fd23" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9718d68-24e9-42b1-8c44-57a4d1585d4f + - fab985d1-9d14-46a4-82db-205d63b3500c status: code: 200 message: OK @@ -472,30 +472,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A58.2426565Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A58.0950803Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/12a2c69f-fdaf-4dcf-aec9-ced8a016429c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd?api-version=2019-10-01 cache-control: - no-cache content-length: - - '453' + - '452' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:23:58 GMT + - Wed, 13 May 2020 11:05:59 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A58.2426565Z'" + - W/"datetime'2020-05-13T11%3A05%3A58.0950803Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -529,13 +529,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/12a2c69f-fdaf-4dcf-aec9-ced8a016429c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/12a2c69f-fdaf-4dcf-aec9-ced8a016429c","name":"12a2c69f-fdaf-4dcf-aec9-ced8a016429c","status":"Succeeded","startTime":"2020-04-08T03:23:58.1917811Z","endTime":"2020-04-08T03:23:58.3011603Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd","name":"4362afdd-5539-4980-b2aa-8ff7f7ffe6bd","status":"Succeeded","startTime":"2020-05-13T11:05:58.0308406Z","endTime":"2020-05-13T11:05:58.1714855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:29 GMT + - Wed, 13 May 2020 11:06:29 GMT expires: - '-1' pragma: @@ -582,13 +582,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A23%3A58.3006989Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A58.1541222Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:29 GMT + - Wed, 13 May 2020 11:06:29 GMT etag: - - W/"datetime'2020-04-08T03%3A23%3A58.3006989Z'" + - W/"datetime'2020-05-13T11%3A05%3A58.1541222Z'" expires: - '-1' pragma: @@ -642,20 +642,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A36.4322482Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A34.1306812Z''\"","location":"westus2","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/westus2/operationResults/636ab82e-d67b-4ba0-9d7e-f97b6ccd02cb?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:24:37 GMT + - Wed, 13 May 2020 11:06:34 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A36.4322482Z'" + - W/"datetime'2020-05-13T11%3A06%3A34.1306812Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/636ab82e-d67b-4ba0-9d7e-f97b6ccd02cb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/636ab82e-d67b-4ba0-9d7e-f97b6ccd02cb","name":"636ab82e-d67b-4ba0-9d7e-f97b6ccd02cb","status":"Succeeded","startTime":"2020-04-08T03:24:36.370469Z","endTime":"2020-04-08T03:24:36.6361385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5","name":"2dc67982-008e-478c-978d-f66487d216b5","status":"Succeeded","startTime":"2020-05-13T11:06:34.0672261Z","endTime":"2020-05-13T11:06:34.2859319Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '615' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:08 GMT + - Wed, 13 May 2020 11:07:06 GMT expires: - '-1' pragma: @@ -752,13 +752,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A24%3A36.6333936Z''\"","location":"westus2","properties":{"poolId":"3a35a81f-0bf7-d07e-1a16-1b7097fa7a3a","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A34.2877934Z''\"","location":"westus2","properties":{"poolId":"b26f0d41-d1d4-220a-3095-e3d87398b995","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:09 GMT + - Wed, 13 May 2020 11:07:06 GMT etag: - - W/"datetime'2020-04-08T03%3A24%3A36.6333936Z'" + - W/"datetime'2020-05-13T11%3A06%3A34.2877934Z'" expires: - '-1' pragma: @@ -813,30 +813,30 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A25%3A13.606105Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A07%3A10.2423371Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 cache-control: - no-cache content-length: - - '903' + - '904' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:25:14 GMT + - Wed, 13 May 2020 11:07:11 GMT etag: - - W/"datetime'2020-04-08T03%3A25%3A13.606105Z'" + - W/"datetime'2020-05-13T11%3A07%3A10.2423371Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -871,67 +871,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -942,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:17 GMT + - Wed, 13 May 2020 11:07:41 GMT expires: - '-1' pragma: @@ -979,13 +925,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:26:47 GMT + - Wed, 13 May 2020 11:08:12 GMT expires: - '-1' pragma: @@ -1033,13 +979,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:17 GMT + - Wed, 13 May 2020 11:08:42 GMT expires: - '-1' pragma: @@ -1087,13 +1033,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:27:48 GMT + - Wed, 13 May 2020 11:09:12 GMT expires: - '-1' pragma: @@ -1141,13 +1087,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1158,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:18 GMT + - Wed, 13 May 2020 11:09:42 GMT expires: - '-1' pragma: @@ -1195,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Succeeded","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"2020-05-13T11:10:01.2822555Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '648' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:28:48 GMT + - Wed, 13 May 2020 11:10:13 GMT expires: - '-1' pragma: @@ -1249,24 +1195,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A10%3A01.2808567Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ea63d86f-c48c-b24c-12a7-c312712f3891","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_98501280","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1547' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:29:19 GMT + - Wed, 13 May 2020 11:10:14 GMT + etag: + - W/"datetime'2020-05-13T11%3A10%3A01.2808567Z'" expires: - '-1' pragma: @@ -1289,94 +1237,49 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "properties": {"fileSystemId": "ea63d86f-c48c-b24c-12a7-c312712f3891"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '95' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:29: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' + - '662' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:20 GMT + - Wed, 13 May 2020 11:10:21 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1385,17 +1288,15 @@ 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: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1404,31 +1305,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5","name":"27e33d50-f5d4-4b89-87d9-0e27d4da14b5","status":"Succeeded","startTime":"2020-05-13T11:10:20.1627431Z","endTime":"2020-05-13T11:10:22.2921454Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '683' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:51 GMT + - Wed, 13 May 2020 11:10:52 GMT expires: - '-1' pragma: @@ -1458,31 +1358,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bc9523b6-c69c-5821-e276-8f1bb64db175","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005","created":"2020-05-13T11:10:20Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '748' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:22 GMT + - Wed, 13 May 2020 11:10:53 GMT expires: - '-1' pragma: @@ -1505,1406 +1404,49 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "properties": {"fileSystemId": "ea63d86f-c48c-b24c-12a7-c312712f3891"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '95' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:31: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' + - '662' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:23 GMT + - Wed, 13 May 2020 11:11: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:32: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:33: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:34: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:35: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:36: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:37: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:39: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:39: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:40: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Creating","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:41: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c6ea660-eb18-4f49-98ed-c61c9eb10356","name":"7c6ea660-eb18-4f49-98ed-c61c9eb10356","status":"Succeeded","startTime":"2020-04-08T03:25:13.5468574Z","endTime":"2020-04-08T03:41:35.2207436Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A41%3A35.2258049Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}],"provisioningState":"Succeeded","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_dfd3898b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1547' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42:05 GMT - etag: - - W/"datetime'2020-04-08T03%3A41%3A35.2258049Z'" - 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: '{"location": "westus2", "properties": {"fileSystemId": "ecf0e220-39bc-6867-32ae-5d746cc62ec3"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1f2110-3f1f-4dea-8dd1-f025d3a78fd3?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '662' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1f2110-3f1f-4dea-8dd1-f025d3a78fd3?api-version=2019-10-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: - - '1189' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1f2110-3f1f-4dea-8dd1-f025d3a78fd3?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4c1f2110-3f1f-4dea-8dd1-f025d3a78fd3","name":"4c1f2110-3f1f-4dea-8dd1-f025d3a78fd3","status":"Succeeded","startTime":"2020-04-08T03:42:13.6272731Z","endTime":"2020-04-08T03:42:15.5140996Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '683' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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 - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"1886f243-6ffc-d023-6833-52cbc13e2a95","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000005","created":"2020-04-08T03:42:13Z"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42: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: '{"location": "westus2", "properties": {"fileSystemId": "ecf0e220-39bc-6867-32ae-5d746cc62ec3"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/044e9512-4fab-4c6b-8af1-07d76ffa1911?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '662' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:42:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/044e9512-4fab-4c6b-8af1-07d76ffa1911?api-version=2019-10-01&operationResultResponseType=Location + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2916,7 +1458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' x-powered-by: - ASP.NET status: @@ -2936,13 +1478,13 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/044e9512-4fab-4c6b-8af1-07d76ffa1911?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/044e9512-4fab-4c6b-8af1-07d76ffa1911","name":"044e9512-4fab-4c6b-8af1-07d76ffa1911","status":"Succeeded","startTime":"2020-04-08T03:42:53.3925794Z","endTime":"2020-04-08T03:42:56.0982649Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e","name":"37e2c015-0c0c-4acb-bbeb-a150cdb9600e","status":"Succeeded","startTime":"2020-05-13T11:10:59.3496316Z","endTime":"2020-05-13T11:11:01.1627779Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -2953,7 +1495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:25 GMT + - Wed, 13 May 2020 11:11:31 GMT expires: - '-1' pragma: @@ -2989,13 +1531,13 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"047dd529-0c4e-8628-dcda-298fa7fe8fef","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000006","created":"2020-04-08T03:42:53Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"44c8539a-c963-edf1-7c14-2a521897cb74","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006","created":"2020-05-13T11:10:59Z"}}' headers: access-control-expose-headers: - Request-Context @@ -3006,7 +1548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:26 GMT + - Wed, 13 May 2020 11:11:32 GMT expires: - '-1' pragma: @@ -3042,15 +1584,15 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"1886f243-6ffc-d023-6833-52cbc13e2a95","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000005","created":"2020-04-08T03:42:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"047dd529-0c4e-8628-dcda-298fa7fe8fef","fileSystemId":"ecf0e220-39bc-6867-32ae-5d746cc62ec3","name":"cli-sn-000006","created":"2020-04-08T03:42:53Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bc9523b6-c69c-5821-e276-8f1bb64db175","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005","created":"2020-05-13T11:10:20Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"44c8539a-c963-edf1-7c14-2a521897cb74","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006","created":"2020-05-13T11:10:59Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -3061,7 +1603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:28 GMT + - Wed, 13 May 2020 11:11:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml index 9f11713e543..84f8cb8cd23 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"df93798d-b466-4f8d-acc8-3498d5e92a2a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"973f5ff3-f3c8-4831-867c-25111cbab6f4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"efdc4afc-9ed6-41ad-8d11-8aca84c32e4f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c7e4af2c-0636-4175-8638-5b6cf24a4618?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ceefe498-18d8-40ef-9efe-4486eaf94513?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:18 GMT + - Wed, 13 May 2020 11:09:29 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b29046c8-d16c-4cc6-9660-4fc0d459d2bf + - 3abc9121-25a9-4019-838f-37ee2a9e1c30 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c7e4af2c-0636-4175-8638-5b6cf24a4618?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ceefe498-18d8-40ef-9efe-4486eaf94513?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:22 GMT + - Wed, 13 May 2020 11:09:33 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d73db055-1ce0-4324-a8e5-3b93f0463fcb + - 5e393d5d-df8f-48b1-813d-82172257b1a5 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"a04d4694-f916-4a04-8e80-0d0c6ef32f74\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"be9cd97a-f19c-4811-a8f2-a4cf16167e89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"efdc4afc-9ed6-41ad-8d11-8aca84c32e4f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:22 GMT + - Wed, 13 May 2020 11:09:33 GMT etag: - - W/"a04d4694-f916-4a04-8e80-0d0c6ef32f74" + - W/"be9cd97a-f19c-4811-a8f2-a4cf16167e89" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ceb6860-faa7-491f-b0bc-574eb10e2722 + - dd059a84-6405-4fcf-8c7e-755c07d1c3d3 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"a04d4694-f916-4a04-8e80-0d0c6ef32f74\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"be9cd97a-f19c-4811-a8f2-a4cf16167e89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"efdc4afc-9ed6-41ad-8d11-8aca84c32e4f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:24 GMT + - Wed, 13 May 2020 11:09:35 GMT etag: - - W/"a04d4694-f916-4a04-8e80-0d0c6ef32f74" + - W/"be9cd97a-f19c-4811-a8f2-a4cf16167e89" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d821e9d-55be-4893-aec7-6506a0b4ff3f + - 3bdf26f5-8ca7-4a44-a7c9-546e9dc554a5 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"653e6735-4446-4914-8055-2fe0207cda29\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"efdc4afc-9ed6-41ad-8d11-8aca84c32e4f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"653e6735-4446-4914-8055-2fe0207cda29\\\"\",\r\n + \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"653e6735-4446-4914-8055-2fe0207cda29\\\"\",\r\n + \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1da332a4-7ffb-447d-8d1d-010b4295c1b0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79971e91-f8aa-4d7f-bd1f-f232ef03fbbf?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:25 GMT + - Wed, 13 May 2020 11:09:36 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf330438-e04b-42a2-abe2-df26824bb407 + - 4319b128-107e-4417-9c19-c89279dca17b x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1da332a4-7ffb-447d-8d1d-010b4295c1b0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79971e91-f8aa-4d7f-bd1f-f232ef03fbbf?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:30 GMT + - Wed, 13 May 2020 11:09:40 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 407cbe31-2464-4f30-9813-8bfd6ef46166 + - bca72d8a-3aa7-47dd-b38b-e39215e33fa1 status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"15bf1e2b-7a07-4de7-9b70-276d3b79bfb6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"efdc4afc-9ed6-41ad-8d11-8aca84c32e4f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"15bf1e2b-7a07-4de7-9b70-276d3b79bfb6\\\"\",\r\n + \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"15bf1e2b-7a07-4de7-9b70-276d3b79bfb6\\\"\",\r\n + \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:30 GMT + - Wed, 13 May 2020 11:09:41 GMT etag: - - W/"15bf1e2b-7a07-4de7-9b70-276d3b79bfb6" + - W/"d8211cc5-fdb8-414c-84bd-813362652347" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84f4651a-52da-4e03-858b-4b30a0531306 + - 98f26706-231e-4071-bb25-92fe72b90079 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A30%3A36.294245Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A45.7520134Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/1cd33a2a-4f60-44cc-979b-ea3ca30dae75?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a65c44-08ea-42c4-876a-8262463ab722?api-version=2019-10-01 cache-control: - no-cache content-length: - - '451' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:30:37 GMT + - Wed, 13 May 2020 11:09:46 GMT etag: - - W/"datetime'2020-04-08T03%3A30%3A36.294245Z'" + - W/"datetime'2020-05-13T11%3A09%3A45.7520134Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1cd33a2a-4f60-44cc-979b-ea3ca30dae75?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a65c44-08ea-42c4-876a-8262463ab722?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1cd33a2a-4f60-44cc-979b-ea3ca30dae75","name":"1cd33a2a-4f60-44cc-979b-ea3ca30dae75","status":"Succeeded","startTime":"2020-04-08T03:30:36.2344802Z","endTime":"2020-04-08T03:30:36.3595559Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a65c44-08ea-42c4-876a-8262463ab722","name":"93a65c44-08ea-42c4-876a-8262463ab722","status":"Succeeded","startTime":"2020-05-13T11:09:45.1953844Z","endTime":"2020-05-13T11:09:46.5503671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:08 GMT + - Wed, 13 May 2020 11:10:17 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A30%3A36.3572902Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A46.4396763Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:08 GMT + - Wed, 13 May 2020 11:10:18 GMT etag: - - W/"datetime'2020-04-08T03%3A30%3A36.3572902Z'" + - W/"datetime'2020-05-13T11%3A09%3A46.4396763Z'" expires: - '-1' pragma: @@ -624,8 +624,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A31%3A14.8801218Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A28.2200826Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/westus2/operationResults/5bd9f34d-412f-4242-847a-0b592e08dceb?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b753e6e9-7609-4788-9a93-b2a0503f7827?api-version=2019-10-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:15 GMT + - Wed, 13 May 2020 11:10:29 GMT etag: - - W/"datetime'2020-04-08T03%3A31%3A14.8801218Z'" + - W/"datetime'2020-05-13T11%3A10%3A28.2200826Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5bd9f34d-412f-4242-847a-0b592e08dceb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b753e6e9-7609-4788-9a93-b2a0503f7827?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5bd9f34d-412f-4242-847a-0b592e08dceb","name":"5bd9f34d-412f-4242-847a-0b592e08dceb","status":"Succeeded","startTime":"2020-04-08T03:31:14.768753Z","endTime":"2020-04-08T03:31:15.0352269Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b753e6e9-7609-4788-9a93-b2a0503f7827","name":"b753e6e9-7609-4788-9a93-b2a0503f7827","status":"Succeeded","startTime":"2020-05-13T11:10:27.4751219Z","endTime":"2020-05-13T11:10:29.2888422Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:47 GMT + - Wed, 13 May 2020 11:11:00 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A31%3A15.0392372Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"9b992e58-69ad-c3e9-e342-ace87ee473c4","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A29.1740104Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"cd5f63f6-1eda-6fc1-d05d-9e65ee4a3017","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:47 GMT + - Wed, 13 May 2020 11:11:01 GMT etag: - - W/"datetime'2020-04-08T03%3A31%3A15.0392372Z'" + - W/"datetime'2020-05-13T11%3A10%3A29.1740104Z'" expires: - '-1' pragma: @@ -794,9 +794,9 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": - "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' headers: Accept: - application/json @@ -807,37 +807,37 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '428' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A31%3A53.5740776Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A07.4171207Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '935' + - '940' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:31:53 GMT + - Wed, 13 May 2020 11:11:09 GMT etag: - - W/"datetime'2020-04-08T03%3A31%3A53.5740776Z'" + - W/"datetime'2020-05-13T11%3A11%3A07.4171207Z'" expires: - '-1' pragma: @@ -851,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -872,24 +872,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:24 GMT + - Wed, 13 May 2020 11:11:39 GMT expires: - '-1' pragma: @@ -926,24 +926,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:32:55 GMT + - Wed, 13 May 2020 11:12:09 GMT expires: - '-1' pragma: @@ -980,24 +980,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:26 GMT + - Wed, 13 May 2020 11:12:39 GMT expires: - '-1' pragma: @@ -1034,24 +1034,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:33:56 GMT + - Wed, 13 May 2020 11:13:10 GMT expires: - '-1' pragma: @@ -1088,24 +1088,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:26 GMT + - Wed, 13 May 2020 11:13:40 GMT expires: - '-1' pragma: @@ -1142,24 +1142,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:34:57 GMT + - Wed, 13 May 2020 11:14:11 GMT expires: - '-1' pragma: @@ -1196,24 +1196,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:28 GMT + - Wed, 13 May 2020 11:14:41 GMT expires: - '-1' pragma: @@ -1250,24 +1250,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:35:58 GMT + - Wed, 13 May 2020 11:15:12 GMT expires: - '-1' pragma: @@ -1304,24 +1304,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:29 GMT + - Wed, 13 May 2020 11:15:42 GMT expires: - '-1' pragma: @@ -1358,24 +1358,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:36:59 GMT + - Wed, 13 May 2020 11:16:13 GMT expires: - '-1' pragma: @@ -1412,24 +1412,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:37:30 GMT + - Wed, 13 May 2020 11:16:43 GMT expires: - '-1' pragma: @@ -1466,24 +1466,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Creating","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:01 GMT + - Wed, 13 May 2020 11:17:13 GMT expires: - '-1' pragma: @@ -1520,24 +1520,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d15f90c0-80b4-4e19-89bd-047fb93c2ddc","name":"d15f90c0-80b4-4e19-89bd-047fb93c2ddc","status":"Succeeded","startTime":"2020-04-08T03:31:53.5147286Z","endTime":"2020-04-08T03:38:25.2844876Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:31 GMT + - Wed, 13 May 2020 11:17:44 GMT expires: - '-1' pragma: @@ -1574,26 +1574,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A38%3A25.2768401Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e7b88ec4-0385-94cc-e904-4120f9eae026","fileSystemId":"e7b88ec4-0385-94cc-e904-4120f9eae026","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"e7b88ec4-0385-94cc-e904-4120f9eae026","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_5f20e270","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:38:31 GMT - etag: - - W/"datetime'2020-04-08T03%3A38%3A25.2768401Z'" + - Wed, 13 May 2020 11:18:15 GMT expires: - '-1' pragma: @@ -1615,70 +1613,6 @@ interactions: status: code: 200 message: OK -- request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": - "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - Content-Length: - - '423' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A38%3A38.9206123Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '935' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:38:39 GMT - etag: - - W/"datetime'2020-04-08T03%3A38%3A38.9206123Z'" - 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-writes: - - '1194' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created - request: body: null headers: @@ -1691,27 +1625,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:11 GMT + - Wed, 13 May 2020 11:18:45 GMT expires: - '-1' pragma: @@ -1745,27 +1679,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:39:41 GMT + - Wed, 13 May 2020 11:19:15 GMT expires: - '-1' pragma: @@ -1799,27 +1733,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:12 GMT + - Wed, 13 May 2020 11:19:46 GMT expires: - '-1' pragma: @@ -1853,27 +1787,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:40:43 GMT + - Wed, 13 May 2020 11:20:16 GMT expires: - '-1' pragma: @@ -1907,27 +1841,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:41:13 GMT + - Wed, 13 May 2020 11:20:46 GMT expires: - '-1' pragma: @@ -1961,27 +1895,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:41:44 GMT + - Wed, 13 May 2020 11:21:16 GMT expires: - '-1' pragma: @@ -2015,27 +1949,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:15 GMT + - Wed, 13 May 2020 11:21:48 GMT expires: - '-1' pragma: @@ -2069,27 +2003,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Succeeded","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"2020-05-13T11:22:09.7819573Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:42:45 GMT + - Wed, 13 May 2020 11:22:18 GMT expires: - '-1' pragma: @@ -2123,27 +2057,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A09.5996815Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"014b2941-a656-39a4-26e7-6dc36539837b","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '1583' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:16 GMT + - Wed, 13 May 2020 11:22:19 GMT + etag: + - W/"datetime'2020-05-13T11%3A22%3A09.5996815Z'" expires: - '-1' pragma: @@ -2166,7 +2102,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' headers: Accept: - application/json @@ -2176,28 +2114,38 @@ interactions: - netappfiles volume create Connection: - keep-alive + Content-Length: + - '428' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A28.6561536Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 cache-control: - no-cache content-length: - - '636' + - '940' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:47 GMT + - Wed, 13 May 2020 11:22:29 GMT + etag: + - W/"datetime'2020-05-13T11%3A22%3A28.6561536Z'" expires: - '-1' pragma: @@ -2208,17 +2156,15 @@ 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: + - '1193' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2234,24 +2180,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:17 GMT + - Wed, 13 May 2020 11:23:01 GMT expires: - '-1' pragma: @@ -2288,24 +2234,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:47 GMT + - Wed, 13 May 2020 11:23:31 GMT expires: - '-1' pragma: @@ -2342,24 +2288,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:18 GMT + - Wed, 13 May 2020 11:24:01 GMT expires: - '-1' pragma: @@ -2396,24 +2342,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:48 GMT + - Wed, 13 May 2020 11:24:32 GMT expires: - '-1' pragma: @@ -2450,24 +2396,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:19 GMT + - Wed, 13 May 2020 11:25:02 GMT expires: - '-1' pragma: @@ -2504,24 +2450,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:46:50 GMT + - Wed, 13 May 2020 11:25:32 GMT expires: - '-1' pragma: @@ -2558,24 +2504,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:21 GMT + - Wed, 13 May 2020 11:26:02 GMT expires: - '-1' pragma: @@ -2612,24 +2558,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:47:51 GMT + - Wed, 13 May 2020 11:26:34 GMT expires: - '-1' pragma: @@ -2666,24 +2612,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:48:21 GMT + - Wed, 13 May 2020 11:27:04 GMT expires: - '-1' pragma: @@ -2720,24 +2666,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:48:51 GMT + - Wed, 13 May 2020 11:27:34 GMT expires: - '-1' pragma: @@ -2774,24 +2720,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:49:23 GMT + - Wed, 13 May 2020 11:28:05 GMT expires: - '-1' pragma: @@ -2828,24 +2774,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:49:53 GMT + - Wed, 13 May 2020 11:28:35 GMT expires: - '-1' pragma: @@ -2882,24 +2828,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:50:24 GMT + - Wed, 13 May 2020 11:29:05 GMT expires: - '-1' pragma: @@ -2936,24 +2882,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:50:55 GMT + - Wed, 13 May 2020 11:29:37 GMT expires: - '-1' pragma: @@ -2990,24 +2936,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:25 GMT + - Wed, 13 May 2020 11:30:07 GMT expires: - '-1' pragma: @@ -3044,24 +2990,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:56 GMT + - Wed, 13 May 2020 11:30:37 GMT expires: - '-1' pragma: @@ -3098,24 +3044,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:26 GMT + - Wed, 13 May 2020 11:31:07 GMT expires: - '-1' pragma: @@ -3152,24 +3098,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:56 GMT + - Wed, 13 May 2020 11:31:38 GMT expires: - '-1' pragma: @@ -3206,24 +3152,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:26 GMT + - Wed, 13 May 2020 11:32:08 GMT expires: - '-1' pragma: @@ -3260,24 +3206,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:58 GMT + - Wed, 13 May 2020 11:32:39 GMT expires: - '-1' pragma: @@ -3314,24 +3260,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:28 GMT + - Wed, 13 May 2020 11:33:10 GMT expires: - '-1' pragma: @@ -3368,24 +3314,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:59 GMT + - Wed, 13 May 2020 11:33:40 GMT expires: - '-1' pragma: @@ -3422,24 +3368,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:55:30 GMT + - Wed, 13 May 2020 11:34:10 GMT expires: - '-1' pragma: @@ -3476,24 +3422,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Creating","startTime":"2020-04-08T03:38:38.814616Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:00 GMT + - Wed, 13 May 2020 11:34:41 GMT expires: - '-1' pragma: @@ -3530,24 +3476,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/943a9671-e8f1-4e2c-abde-e408296637ee","name":"943a9671-e8f1-4e2c-abde-e408296637ee","status":"Succeeded","startTime":"2020-04-08T03:38:38.814616Z","endTime":"2020-04-08T03:56:04.9386796Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:31 GMT + - Wed, 13 May 2020 11:35:11 GMT expires: - '-1' pragma: @@ -3584,26 +3530,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A56%3A04.9461856Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"18f0443c-7ac2-67ef-ce84-0d6770951771","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_2ebb0649e26111e988286e573da70a0d_5f20e270","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:32 GMT - etag: - - W/"datetime'2020-04-08T03%3A56%3A04.9461856Z'" + - Wed, 13 May 2020 11:35:42 GMT expires: - '-1' pragma: @@ -3633,32 +3577,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group -a -p + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A38%3A25.2768401Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e7b88ec4-0385-94cc-e904-4120f9eae026","fileSystemId":"e7b88ec4-0385-94cc-e904-4120f9eae026","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"e7b88ec4-0385-94cc-e904-4120f9eae026","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_5f20e270","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A56%3A04.9461856Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"18f0443c-7ac2-67ef-ce84-0d6770951771","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_2ebb0649e26111e988286e573da70a0d_5f20e270","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3169' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:34 GMT + - Wed, 13 May 2020 11:36:13 GMT expires: - '-1' pragma: @@ -3688,87 +3631,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Apr 2020 03:56:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-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-deletes: - - '14995' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Succeeded","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"2020-05-13T11:36:35.3480753Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:57:08 GMT + - Wed, 13 May 2020 11:36:43 GMT expires: - '-1' pragma: @@ -3798,30 +3685,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1583' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:57:38 GMT + - Wed, 13 May 2020 11:36:44 GMT + etag: + - W/"datetime'2020-05-13T11%3A36%3A35.1799522Z'" expires: - '-1' pragma: @@ -3851,30 +3741,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume list Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group -a -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A09.5996815Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"014b2941-a656-39a4-26e7-6dc36539837b","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '3179' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:58:09 GMT + - Wed, 13 May 2020 11:36:46 GMT expires: - '-1' pragma: @@ -3907,29 +3799,35 @@ interactions: - netappfiles volume delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '' 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/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 08 Apr 2020 03:58:39 GMT + - Wed, 13 May 2020 11:36:51 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3938,600 +3836,15 @@ 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-deletes: + - '14998' x-powered-by: - ASP.NET status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:59: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:59: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:00: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:00: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:01: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:01: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:02: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:02: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:03: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:03: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 - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 04:04: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 + code: 202 + message: Accepted - request: body: null headers: @@ -4546,24 +3859,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:04:46 GMT + - Wed, 13 May 2020 11:37:24 GMT expires: - '-1' pragma: @@ -4599,24 +3912,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:05:17 GMT + - Wed, 13 May 2020 11:37:55 GMT expires: - '-1' pragma: @@ -4652,24 +3965,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:05:48 GMT + - Wed, 13 May 2020 11:38:25 GMT expires: - '-1' pragma: @@ -4705,24 +4018,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Deleting","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:18 GMT + - Wed, 13 May 2020 11:38:55 GMT expires: - '-1' pragma: @@ -4758,24 +4071,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f28eb61-259d-4072-8638-40c7cc611b5e","name":"7f28eb61-259d-4072-8638-40c7cc611b5e","status":"Succeeded","startTime":"2020-04-08T03:56:37.1962011Z","endTime":"2020-04-08T04:06:24.4715681Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Succeeded","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"2020-05-13T11:38:57.0368228Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:48 GMT + - Wed, 13 May 2020 11:39:26 GMT expires: - '-1' pragma: @@ -4811,26 +4124,26 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A56%3A04.9461856Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"18f0443c-7ac2-67ef-ce84-0d6770951771","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"18f0443c-7ac2-67ef-ce84-0d6770951771","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_2ebb0649e26111e988286e573da70a0d_5f20e270","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1590' + - '1595' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:51 GMT + - Wed, 13 May 2020 11:39:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml index 2639d4dba24..2a0332063c8 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": - {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' + body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -18,28 +18,28 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ - ,\r\n \"etag\": \"W/\\\"1b91e814-ab2c-4272-922a-b50b2618c9ef\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n + \ \"etag\": \"W/\\\"7b3424f7-808a-47eb-a047-27f7642c601f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da139ba6-f289-43f0-8fdd-be332daf0744?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6eeaffc4-cb03-495b-9f91-c39a1faedeb7?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:48 GMT + - Wed, 13 May 2020 11:09:29 GMT expires: - '-1' pragma: @@ -60,7 +60,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63a2005e-4ab9-440e-8e10-7ab7d24e05cb + - 56931923-3b5f-4cc5-b36f-8c95dddf1790 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -80,13 +80,13 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da139ba6-f289-43f0-8fdd-be332daf0744?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6eeaffc4-cb03-495b-9f91-c39a1faedeb7?api-version=2020-03-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:52 GMT + - Wed, 13 May 2020 11:09:33 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a33e6ddb-92cd-4059-937a-fceef67fcf91 + - dcb0acf4-bd8a-48a6-8210-2aca1bf10654 status: code: 200 message: OK @@ -130,23 +130,21 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ - ,\r\n \"etag\": \"W/\\\"a61d523c-c056-49a9-8d18-98ae7aa087ac\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n + \ \"etag\": \"W/\\\"804a03cb-dd9f-49e2-89fd-0f738730d526\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -155,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:52 GMT + - Wed, 13 May 2020 11:09:33 GMT etag: - - W/"a61d523c-c056-49a9-8d18-98ae7aa087ac" + - W/"804a03cb-dd9f-49e2-89fd-0f738730d526" expires: - '-1' pragma: @@ -174,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c471f2f6-5520-4521-8259-9fb8a6c53e8f + - f26d4a05-8345-4cc8-a462-d632eacc6582 status: code: 200 message: OK @@ -192,25 +190,23 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ - ,\r\n \"etag\": \"W/\\\"a61d523c-c056-49a9-8d18-98ae7aa087ac\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n + \ \"etag\": \"W/\\\"804a03cb-dd9f-49e2-89fd-0f738730d526\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -219,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:53 GMT + - Wed, 13 May 2020 11:09:35 GMT etag: - - W/"a61d523c-c056-49a9-8d18-98ae7aa087ac" + - W/"804a03cb-dd9f-49e2-89fd-0f738730d526" expires: - '-1' pragma: @@ -238,17 +234,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4a8bb94-ac26-485a-9a8b-b47bcbc94c89 + - 9856253b-6970-4244-a8a6-0f1926170aab status: code: 200 message: OK - request: - body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008", - "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": - [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", - "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000009"}], - "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": - []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009", + "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": + "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000010"}], + "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": + false}}''' headers: Accept: - application/json @@ -265,44 +262,42 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2020-03-01 - response: - body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ - ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000009\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n + \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n + \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n + \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2dcdb51b-d6ce-42ea-8a98-43e01e481b53?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b557fa24-ccfe-4079-a177-e93ce903b512?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -310,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:54 GMT + - Wed, 13 May 2020 11:09:36 GMT expires: - '-1' pragma: @@ -327,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf4a6336-29f3-4339-84e2-dfcd131846c1 + - d2b0b807-62bc-4a4c-887c-4eb4842f78e2 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -347,13 +342,13 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2dcdb51b-d6ce-42ea-8a98-43e01e481b53?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b557fa24-ccfe-4079-a177-e93ce903b512?api-version=2020-03-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -362,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:58 GMT + - Wed, 13 May 2020 11:09:40 GMT expires: - '-1' pragma: @@ -379,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5c36831-d825-45e4-b96e-47417efbe04d + - ef1d2db6-df5a-46aa-b737-45356c4cff76 status: code: 200 message: OK @@ -397,39 +392,37 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2020-03-01 - response: - body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ - ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000009\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n + \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n + \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n + \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -438,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:04:58 GMT + - Wed, 13 May 2020 11:09:40 GMT etag: - - W/"bc436e52-8c4e-4e28-be83-fa91d2b0fabd" + - W/"821f7534-8364-4917-a73f-17f3e7326dd4" expires: - '-1' pragma: @@ -457,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9d195b2-8cc7-4056-8be8-4f1b83c7c301 + - 23ce8502-5cd3-42df-90ac-e888422750c6 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westus2stage"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -479,30 +472,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A05%3A07.623987Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A45.7420029Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","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/4a00d83a-d526-4d8d-a9cc-01410e78e27c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51976dc7-f453-4e9d-8c01-42ee1f6fcd16?api-version=2019-10-01 cache-control: - no-cache content-length: - - '456' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:05:08 GMT + - Wed, 13 May 2020 11:09:46 GMT etag: - - W/"datetime'2020-02-07T09%3A05%3A07.623987Z'" + - W/"datetime'2020-05-13T11%3A09%3A45.7420029Z'" expires: - '-1' pragma: @@ -536,13 +529,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a00d83a-d526-4d8d-a9cc-01410e78e27c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51976dc7-f453-4e9d-8c01-42ee1f6fcd16?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a00d83a-d526-4d8d-a9cc-01410e78e27c","name":"4a00d83a-d526-4d8d-a9cc-01410e78e27c","status":"Succeeded","startTime":"2020-02-07T09:05:06.7917426Z","endTime":"2020-02-07T09:05:08.5587184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51976dc7-f453-4e9d-8c01-42ee1f6fcd16","name":"51976dc7-f453-4e9d-8c01-42ee1f6fcd16","status":"Succeeded","startTime":"2020-05-13T11:09:45.3107551Z","endTime":"2020-05-13T11:09:46.5385429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -553,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:05:39 GMT + - Wed, 13 May 2020 11:10:18 GMT expires: - '-1' pragma: @@ -589,13 +582,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A05%3A08.4527959Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A46.4336709Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -606,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:05:39 GMT + - Wed, 13 May 2020 11:10:18 GMT etag: - - W/"datetime'2020-02-07T09%3A05%3A08.4527959Z'" + - W/"datetime'2020-05-13T11%3A09%3A46.4336709Z'" expires: - '-1' pragma: @@ -631,8 +624,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westus2stage", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -649,20 +642,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004","name":"cli-acc-000002/cli-pool-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A05%3A47.5508595Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A26.6155246Z''\"","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/63a69039-b47d-4717-acfc-5ca1411bae3b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc51585d-298a-4075-8c07-9553943ba4ff?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -670,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:05:48 GMT + - Wed, 13 May 2020 11:10:27 GMT etag: - - W/"datetime'2020-02-07T09%3A05%3A47.5508595Z'" + - W/"datetime'2020-05-13T11%3A10%3A26.6155246Z'" expires: - '-1' pragma: @@ -686,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -706,13 +699,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a69039-b47d-4717-acfc-5ca1411bae3b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc51585d-298a-4075-8c07-9553943ba4ff?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a69039-b47d-4717-acfc-5ca1411bae3b","name":"63a69039-b47d-4717-acfc-5ca1411bae3b","status":"Succeeded","startTime":"2020-02-07T09:05:46.993573Z","endTime":"2020-02-07T09:05:48.7573508Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc51585d-298a-4075-8c07-9553943ba4ff","name":"dc51585d-298a-4075-8c07-9553943ba4ff","status":"Succeeded","startTime":"2020-05-13T11:10:26.202971Z","endTime":"2020-05-13T11:10:27.6249583Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -723,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:06:19 GMT + - Wed, 13 May 2020 11:10:58 GMT expires: - '-1' pragma: @@ -759,13 +752,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004","name":"cli-acc-000002/cli-pool-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A05%3A48.6529349Z''\"","location":"westus2stage","properties":{"poolId":"b6481bc2-3d87-5736-f01c-311bfad475ef","name":"cli-acc-000002/cli-pool-000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A27.5123949Z''\"","location":"westus2stage","properties":{"poolId":"455298ed-67ff-a2a5-518f-715e8dae32e6","name":"cli-acc-000003/cli-pool-000005","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -776,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:06:20 GMT + - Wed, 13 May 2020 11:10:58 GMT etag: - - W/"datetime'2020-02-07T09%3A05%3A48.6529349Z'" + - W/"datetime'2020-05-13T11%3A10%3A27.5123949Z'" expires: - '-1' pragma: @@ -801,9 +794,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009", - "serviceLevel": "Premium", "creationToken": "cli-vol-000006"}, "location": "westus2stage"}' + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000007", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}''' headers: Accept: - application/json @@ -821,20 +813,20 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","name":"cli-acc-000002/cli-pool-000004/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A06%3A28.4027512Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A07.2709769Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","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/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -842,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:06:28 GMT + - Wed, 13 May 2020 11:11:08 GMT etag: - - W/"datetime'2020-02-07T09%3A06%3A28.4027512Z'" + - W/"datetime'2020-05-13T11%3A11%3A07.2709769Z'" expires: - '-1' pragma: @@ -858,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -879,13 +871,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -896,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:07:00 GMT + - Wed, 13 May 2020 11:11:38 GMT expires: - '-1' pragma: @@ -933,13 +925,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -950,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:07:30 GMT + - Wed, 13 May 2020 11:12:08 GMT expires: - '-1' pragma: @@ -987,13 +979,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1004,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:08:01 GMT + - Wed, 13 May 2020 11:12:39 GMT expires: - '-1' pragma: @@ -1041,13 +1033,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1058,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:08:50 GMT + - Wed, 13 May 2020 11:13:09 GMT expires: - '-1' pragma: @@ -1095,13 +1087,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1112,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:09:22 GMT + - Wed, 13 May 2020 11:13:39 GMT expires: - '-1' pragma: @@ -1149,13 +1141,13 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1166,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:09:52 GMT + - Wed, 13 May 2020 11:14:09 GMT expires: - '-1' pragma: @@ -1203,24 +1195,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Succeeded","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"2020-02-07T09:10:09.3808401Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:22 GMT + - Wed, 13 May 2020 11:14:40 GMT expires: - '-1' pragma: @@ -1257,26 +1249,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","name":"cli-acc-000002/cli-pool-000004/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A10%3A09.1833359Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","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_8d6d1264","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","fileSystemId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1558' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:23 GMT - etag: - - W/"datetime'2020-02-07T09%3A10%3A09.1833359Z'" + - Wed, 13 May 2020 11:15:10 GMT expires: - '-1' pragma: @@ -1299,121 +1289,113 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "southcentralus"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n --subscription -l + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-000012?api-version=2019-07-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012","name":"cli-rg-000012","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '253' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:28 GMT + - Wed, 13 May 2020 11:15: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-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-powered-by: + - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: !!python/unicode '{"location": "southcentralus", "properties": {"dhcpOptions": - {}, "addressSpace": {"addressPrefixes": ["10.1.0.0/16"]}}, "tags": {}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '131' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n --resource-group -l --address-prefix + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2020-03-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"ca0bded0-9f2a-4997-b9a2-d362872be2b6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cdad3bc-c263-40df-bfe3-6fce31b49328?api-version=2020-03-01 + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '761' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:32 GMT + - Wed, 13 May 2020 11:16:11 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - fd024e45-eeb1-4c40-bf50-5946fe7292be - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-powered-by: + - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1422,35 +1404,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -n --resource-group -l --address-prefix + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cdad3bc-c263-40df-bfe3-6fce31b49328?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '29' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:36 GMT + - Wed, 13 May 2020 11:16:42 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1459,8 +1445,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 321a9b88-f059-4de6-86aa-1de0883d2e1b + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1472,47 +1458,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -n --resource-group -l --address-prefix + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"960f4465-8fa4-4598-b877-1d9a805c6f7a\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '762' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:36 GMT - etag: - - W/"960f4465-8fa4-4598-b877-1d9a805c6f7a" + - Wed, 13 May 2020 11:17:12 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1521,8 +1499,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 885f7a58-8a1d-482e-8d9c-f55d29800bdc + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1534,49 +1512,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet subnet create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -n -g --vnet-name --address-prefixes --delegations + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"960f4465-8fa4-4598-b877-1d9a805c6f7a\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ - \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ - : false\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '762' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:37 GMT - etag: - - W/"960f4465-8fa4-4598-b877-1d9a805c6f7a" + - Wed, 13 May 2020 11:17:42 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1585,87 +1553,52 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 7ac76ba5-21b3-45f7-9ff2-aa80e3322ad3 + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010", - "location": "southcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": - [{"properties": {"addressPrefix": "10.1.0.0/24", "delegations": [{"name": "0", - "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000011"}], - "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": - []}, "addressSpace": {"addressPrefixes": ["10.1.0.0/16"]}}, "tags": {}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vnet subnet create + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '589' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --vnet-name --address-prefixes --delegations + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2020-03-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000011\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1de2b58-35c9-49dc-a558-4474d81451f4?api-version=2020-03-01 + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '2245' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:38 GMT + - Wed, 13 May 2020 11:18:13 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1674,10 +1607,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - d6903cc5-d61c-49ce-aa30-d14e9aba5baf - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1689,35 +1620,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet subnet create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -n -g --vnet-name --address-prefixes --delegations + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1de2b58-35c9-49dc-a558-4474d81451f4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Succeeded","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"2020-05-13T11:18:16.8919912Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '29' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:58 GMT + - Wed, 13 May 2020 11:18:44 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1726,8 +1661,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 844d0ebc-269c-4fd1-8c31-41d9c1513961 + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1739,63 +1674,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet subnet create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -n -g --vnet-name --address-prefixes --delegations + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ - ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ - 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ - : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000011\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ - : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\ - \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ - ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ - ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ - \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ - \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ - ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A18%3A16.7247062Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","fileSystemId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","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_fb0467dd8e8011e9a7f006ddec9cd511_9791d9ea","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '2247' + - '1558' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:10:59 GMT + - Wed, 13 May 2020 11:18:44 GMT etag: - - W/"7ca4daf9-687c-4eea-a877-b7e4806593f5" + - W/"datetime'2020-05-13T11%3A18%3A16.7247062Z'" expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1804,69 +1717,75 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 70d23a74-3833-4ea3-87dc-07a49a09c59a + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "southcentralusstage"}' + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.1.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles account create + - network vnet create Connection: - keep-alive Content-Length: - - '35' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -a -l + - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A11%3A03.0532019Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000003","provisioningState":"Creating"}}' + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n + \ \"etag\": \"W/\\\"caa4d952-56d1-4f97-bf1f-decc1473dc95\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: - access-control-expose-headers: - - Request-Context + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 cache-control: - no-cache content-length: - - '413' + - '812' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:11:03 GMT - etag: - - W/"datetime'2020-02-07T09%3A11%3A03.0532019Z'" + - Wed, 13 May 2020 11:18:53 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 2271ba9a-8406-476a-85e1-db6a7356dbff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1194' status: code: 201 message: Created @@ -1878,38 +1797,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles account create + - network vnet create Connection: - keep-alive ParameterSetName: - - -g -a -l + - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91","name":"fdfe9288-b031-4c8a-886a-44f2b6037e91","status":"Succeeded","startTime":"2020-02-07T09:11:02.8819675Z","endTime":"2020-02-07T09:11:03.2101482Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '537' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:11:34 GMT + - Wed, 13 May 2020 11:18:57 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1918,8 +1834,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 2ff14d45-e41c-47ce-b3b8-679a899030d2 status: code: 200 message: OK @@ -1931,40 +1847,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles account create + - network vnet create Connection: - keep-alive ParameterSetName: - - -g -a -l + - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A11%3A03.2163162Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000003","provisioningState":"Succeeded"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '414' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:11:34 GMT - etag: - - W/"datetime'2020-02-07T09%3A11%3A03.2163162Z'" + - Wed, 13 May 2020 11:19:07 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1973,11577 +1884,48 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - e75ed2a7-968a-4fed-ac39-bf890f816e8f status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "southcentralusstage", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles pool create + - network vnet create Connection: - keep-alive - Content-Length: - - '101' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -l --service-level --size + - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A11%3A39.6248213Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" 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/64bfb848-e036-4c5d-b67a-5524d3204a3f?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '503' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:11:40 GMT - etag: - - W/"datetime'2020-02-07T09%3A11%3A39.6248213Z'" - 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-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles pool create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -l --service-level --size - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64bfb848-e036-4c5d-b67a-5524d3204a3f?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64bfb848-e036-4c5d-b67a-5524d3204a3f","name":"64bfb848-e036-4c5d-b67a-5524d3204a3f","status":"Succeeded","startTime":"2020-02-07T09:11:39.5054194Z","endTime":"2020-02-07T09:11:39.97416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '574' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:12: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 - CommandName: - - netappfiles pool create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -l --service-level --size - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A11%3A39.9750684Z''\"","location":"southcentralusstage","properties":{"poolId":"9965bfe8-576d-efc2-42d3-c3da24348092","name":"cli-acc-000003/cli-pool-000005","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '611' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:12:11 GMT - etag: - - W/"datetime'2020-02-07T09%3A11%3A39.9750684Z'" - 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: !!python/unicode '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011", - "creationToken": "cli-vol-000007", "usageThreshold": 107374182400, "volumeType": - "DataProtection", "serviceLevel": "Premium", "dataProtection": {"replication": - {"replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006", - "endpointType": "dst"}}}, "location": "southcentralusstage"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - Content-Length: - - '797' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A12%3A18.5762403Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}},"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011","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/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '1251' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:12:23 GMT - etag: - - W/"datetime'2020-02-07T09%3A12%3A18.5762403Z'" - 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-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:12: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:13: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:13: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:14: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:14: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:15: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:16: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:16: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Succeeded","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"2020-02-07T09:17:23.5875534Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '609' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type - --replication-schedule --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A17%3A23.5812839Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"71227596-797f-e203-41b4-cad39918ddc9","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"da17d2e8-393b-5bb5-3057-15f31335a59b","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","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_4fd61e81","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"da17d2e8-393b-5bb5-3057-15f31335a59b","fileSystemId":"da17d2e8-393b-5bb5-3057-15f31335a59b","startIp":"10.1.0.11","endIp":"10.1.0.11","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.11"}],"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1988' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17:28 GMT - etag: - - W/"datetime'2020-02-07T09%3A17%3A23.5812839Z'" - 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: !!python/unicode '{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication approve - Connection: - - keep-alive - Content-Length: - - '260' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v --remote-volume-resource-id - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006/authorizeReplication?api-version=2019-10-01 - response: - body: - string: !!python/unicode '' - 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/ce9d2451-1be5-4cfd-a44b-0f47ab18e4ee?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Feb 2020 09:17:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ce9d2451-1be5-4cfd-a44b-0f47ab18e4ee?api-version=2019-10-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: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"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: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"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: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"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: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"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: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"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: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:17: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:18: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '95' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/breakReplication?api-version=2019-10-01 - response: - body: - string: !!python/unicode '' - 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/e9cb160a-8be1-49ea-9de1-870ecaa10c55?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Feb 2020 09:19:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e9cb160a-8be1-49ea-9de1-870ecaa10c55?api-version=2019-10-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: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '104' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication resume - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/resyncReplication?api-version=2019-10-01 - response: - body: - string: !!python/unicode '' - 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/d3c290c7-44fb-441c-a122-a68845da9601?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Feb 2020 09:19:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d3c290c7-44fb-441c-a122-a68845da9601?api-version=2019-10-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: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:19: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:20: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:21: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:22: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:23: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '112' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication pause - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/breakReplication?api-version=2019-10-01 - response: - body: - string: !!python/unicode '' - 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/7f141f43-0e3b-42af-859a-2836bfee2696?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Feb 2020 09:24:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f141f43-0e3b-42af-859a-2836bfee2696?api-version=2019-10-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: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:24: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:25: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '106' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:03 GMT + - Wed, 13 May 2020 11:19:17 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13552,8 +1934,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 4fd2e39f-57b4-4600-9ee8-4db5dd41f34b status: code: 200 message: OK @@ -13565,40 +1947,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - network vnet create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n + \ \"etag\": \"W/\\\"0d847b11-ca7b-445b-af67-978cbef7f721\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '106' + - '813' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:05 GMT + - Wed, 13 May 2020 11:19:18 GMT + etag: + - W/"0d847b11-ca7b-445b-af67-978cbef7f721" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13607,8 +1994,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 7b803055-4af0-46f2-b994-9961f595366e status: code: 200 message: OK @@ -13620,40 +2007,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - network vnet subnet create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n + \ \"etag\": \"W/\\\"0d847b11-ca7b-445b-af67-978cbef7f721\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '106' + - '813' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:08 GMT + - Wed, 13 May 2020 11:19:20 GMT + etag: + - W/"0d847b11-ca7b-445b-af67-978cbef7f721" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13662,108 +2056,86 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 793039e7-dc43-404e-b551-5b7554307607 status: code: 200 message: OK - request: - body: null + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011", + "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.1.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.1.0.0/24", "delegations": [{"properties": {"serviceName": + "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000012"}], + "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": + false}}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - network vnet subnet create Connection: - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '106' - content-type: + Content-Length: + - '640' + Content-Type: - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 09:25: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 - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive ParameterSetName: - - -g -a -p -v + - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 - response: - body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n + \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n + \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n + \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: - access-control-expose-headers: - - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eb71dbe0-bcf5-45db-9d00-0d8091b106f2?api-version=2020-03-01 cache-control: - no-cache content-length: - - '106' + - '2398' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:13 GMT + - Wed, 13 May 2020 11:19:21 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13772,8 +2144,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - f4875a17-725d-4450-a09b-f69e5b0816cd + x-ms-ratelimit-remaining-subscription-writes: + - '1190' status: code: 200 message: OK @@ -13785,50 +2159,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - network vnet subnet create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eb71dbe0-bcf5-45db-9d00-0d8091b106f2?api-version=2020-03-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '106' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:15 GMT + - Wed, 13 May 2020 11:19:24 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - b60743d5-9129-4d81-8f2e-9978d8c057b0 status: code: 200 message: OK @@ -13840,87 +2205,112 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - network vnet subnet create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n + \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n + \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\": + [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n + \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n + \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '106' + - '2400' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:18 GMT + - Wed, 13 May 2020 11:19:24 GMT + etag: + - W/"fcbeea51-377b-4bd7-989d-86a6e13cac65" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 0ef5f9f7-e600-4675-bc30-b3a067e679f5 status: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralusstage"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles account create Connection: - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v + - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A19%3A31.0239987Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","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/e78136ef-e3dd-4844-ac4c-75bf3f22ab61?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' + - '464' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:20 GMT + - Wed, 13 May 2020 11:19:32 GMT + etag: + - W/"datetime'2020-05-13T11%3A19%3A31.0239987Z'" expires: - '-1' pragma: @@ -13931,17 +2321,15 @@ 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: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -13950,32 +2338,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles account create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e78136ef-e3dd-4844-ac4c-75bf3f22ab61?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e78136ef-e3dd-4844-ac4c-75bf3f22ab61","name":"e78136ef-e3dd-4844-ac4c-75bf3f22ab61","status":"Succeeded","startTime":"2020-05-13T11:19:30.9704524Z","endTime":"2020-05-13T11:19:31.0798522Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '588' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:23 GMT + - Wed, 13 May 2020 11:20:03 GMT expires: - '-1' pragma: @@ -14005,32 +2391,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles account create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -l User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A19%3A31.0850387Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '465' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:25 GMT + - Wed, 13 May 2020 11:20:03 GMT + etag: + - W/"datetime'2020-05-13T11%3A19%3A31.0850387Z'" expires: - '-1' pragma: @@ -14053,39 +2439,48 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, + "serviceLevel": "Premium"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles pool create Connection: - keep-alive + Content-Length: + - '101' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v + - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A20%3A09.045061Z''\"","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/d421e5ae-4357-48d3-a34e-29c0fced0e9d?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:26 GMT + - Wed, 13 May 2020 11:20:09 GMT + etag: + - W/"datetime'2020-05-13T11%3A20%3A09.045061Z'" expires: - '-1' pragma: @@ -14096,17 +2491,15 @@ 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: + - '1194' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -14115,32 +2508,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles pool create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d421e5ae-4357-48d3-a34e-29c0fced0e9d?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d421e5ae-4357-48d3-a34e-29c0fced0e9d","name":"d421e5ae-4357-48d3-a34e-29c0fced0e9d","status":"Succeeded","startTime":"2020-05-13T11:20:08.9759421Z","endTime":"2020-05-13T11:20:09.1946784Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '627' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:30 GMT + - Wed, 13 May 2020 11:20:41 GMT expires: - '-1' pragma: @@ -14170,32 +2561,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles pool create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A20%3A09.1911587Z''\"","location":"southcentralusstage","properties":{"poolId":"3f5ba045-c7c2-ac1e-739d-00a8a45dd381","name":"cli-acc-000004/cli-pool-000006","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '662' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:32 GMT + - Wed, 13 May 2020 11:20:41 GMT + etag: + - W/"datetime'2020-05-13T11%3A20%3A09.1911587Z'" expires: - '-1' pragma: @@ -14218,39 +2609,53 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"location": "southcentralusstage", "properties": {"creationToken": + "cli-vol-000008", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012", + "volumeType": "DataProtection", "dataProtection": {"replication": {"endpointType": + "dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}}}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive + Content-Length: + - '848' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A20%3A49.7739095Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","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/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' + - '1353' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:35 GMT + - Wed, 13 May 2020 11:20:50 GMT + etag: + - W/"datetime'2020-05-13T11%3A20%3A49.7739095Z'" expires: - '-1' pragma: @@ -14261,17 +2666,15 @@ 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: + - '1193' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -14280,32 +2683,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '649' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:37 GMT + - Wed, 13 May 2020 11:21:21 GMT expires: - '-1' pragma: @@ -14335,32 +2738,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '649' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:39 GMT + - Wed, 13 May 2020 11:21:52 GMT expires: - '-1' pragma: @@ -14390,32 +2793,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '649' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:41 GMT + - Wed, 13 May 2020 11:22:22 GMT expires: - '-1' pragma: @@ -14445,32 +2848,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '649' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:43 GMT + - Wed, 13 May 2020 11:22:52 GMT expires: - '-1' pragma: @@ -14500,32 +2903,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '649' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:46 GMT + - Wed, 13 May 2020 11:23:23 GMT expires: - '-1' pragma: @@ -14555,32 +2958,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Succeeded","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"2020-05-13T11:23:49.689048Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '659' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:48 GMT + - Wed, 13 May 2020 11:23:53 GMT expires: - '-1' pragma: @@ -14610,32 +3013,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A23%3A49.694506Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","fileSystemId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","startIp":"10.1.0.4","endIp":"10.1.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"fileSystemId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","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_2a1b69b6177611eab66c6e734b166c7d_3007dd9f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '1995' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:50 GMT + - Wed, 13 May 2020 11:23:53 GMT + etag: + - W/"datetime'2020-05-13T11%3A23%3A49.694506Z'" expires: - '-1' pragma: @@ -14658,41 +3063,47 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication approve Connection: - keep-alive + Content-Length: + - '311' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v + - -g -a -p -v --remote-volume-resource-id User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/authorizeReplication?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '' 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/fcc60566-ff72-42e9-ac2d-25aeb8be2aac?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 07 Feb 2020 09:25:53 GMT + - Wed, 13 May 2020 11:24:01 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fcc60566-ff72-42e9-ac2d-25aeb8be2aac?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -14701,17 +3112,15 @@ 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: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14726,26 +3135,27 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":"Volume + replication not authorized."}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '129' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:56 GMT + - Wed, 13 May 2020 11:24:02 GMT expires: - '-1' pragma: @@ -14781,26 +3191,27 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":"Volume + replication not authorized."}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '129' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:25:58 GMT + - Wed, 13 May 2020 11:24:05 GMT expires: - '-1' pragma: @@ -14836,26 +3247,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '112' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:00 GMT + - Wed, 13 May 2020 11:25:08 GMT expires: - '-1' pragma: @@ -14891,26 +3302,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '112' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:03 GMT + - Wed, 13 May 2020 11:26:12 GMT expires: - '-1' pragma: @@ -14946,26 +3357,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '112' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:05 GMT + - Wed, 13 May 2020 11:27:15 GMT expires: - '-1' pragma: @@ -15001,26 +3412,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '112' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:08 GMT + - Wed, 13 May 2020 11:28:17 GMT expires: - '-1' pragma: @@ -15056,26 +3467,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '112' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:09 GMT + - Wed, 13 May 2020 11:29:20 GMT expires: - '-1' pragma: @@ -15111,26 +3522,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:12 GMT + - Wed, 13 May 2020 11:30:21 GMT expires: - '-1' pragma: @@ -15160,34 +3571,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication suspend Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + 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/b4d15ee3-faed-479e-b5e6-53d4693dcf99?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 07 Feb 2020 09:26:14 GMT + - Wed, 13 May 2020 11:30:25 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4d15ee3-faed-479e-b5e6-53d4693dcf99?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -15196,17 +3611,15 @@ 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: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -15221,26 +3634,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:17 GMT + - Wed, 13 May 2020 11:30:27 GMT expires: - '-1' pragma: @@ -15276,26 +3689,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:19 GMT + - Wed, 13 May 2020 11:30:29 GMT expires: - '-1' pragma: @@ -15331,26 +3744,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:22 GMT + - Wed, 13 May 2020 11:31:32 GMT expires: - '-1' pragma: @@ -15380,34 +3793,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication resume Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/resyncReplication?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + 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/212d20e2-f7f9-4a7e-a4ff-3b61ee27faf8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 07 Feb 2020 09:26:24 GMT + - Wed, 13 May 2020 11:31:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/212d20e2-f7f9-4a7e-a4ff-3b61ee27faf8?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -15416,17 +3833,15 @@ 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: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -15441,26 +3856,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:26 GMT + - Wed, 13 May 2020 11:31:36 GMT expires: - '-1' pragma: @@ -15496,26 +3911,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '115' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:29 GMT + - Wed, 13 May 2020 11:31:38 GMT expires: - '-1' pragma: @@ -15545,34 +3960,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication suspend Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + 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/f279f3c1-e64c-4df2-9981-790be218d6d6?api-version=2019-10-01 cache-control: - no-cache content-length: - - '106' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 07 Feb 2020 09:26:31 GMT + - Wed, 13 May 2020 11:31:41 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f279f3c1-e64c-4df2-9981-790be218d6d6?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -15581,17 +4000,15 @@ 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: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -15606,26 +4023,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '115' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:34 GMT + - Wed, 13 May 2020 11:31:43 GMT expires: - '-1' pragma: @@ -15661,26 +4078,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '106' + - '115' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:35 GMT + - Wed, 13 May 2020 11:31:45 GMT expires: - '-1' pragma: @@ -15716,26 +4133,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2019-10-01 response: body: - string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"0","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '104' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 09:26:38 GMT + - Wed, 13 May 2020 11:32:47 GMT expires: - '-1' pragma: @@ -15773,30 +4190,30 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/deleteReplication?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/deleteReplication?api-version=2019-10-01 response: body: - string: !!python/unicode '' + 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/a821261a-2a18-474f-9a50-051a6dfedb75?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/086b14e7-2d5c-4a1d-8e69-a202705d3323?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 09:26:40 GMT + - Wed, 13 May 2020 11:32:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a821261a-2a18-474f-9a50-051a6dfedb75?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/086b14e7-2d5c-4a1d-8e69-a202705d3323?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml index 2818332eaf8..e441a06cbe3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2stage"}' + body: '{"location": "westus2"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '23' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A53.9352916Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.604262Z''\"","location":"westus2","properties":{"name":"cli000002","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/fa44139a-36fd-4bfa-9e99-3258b230f20b?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '451' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:23:53 GMT + - Wed, 13 May 2020 11:04:54 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A53.9352916Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.604262Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa44139a-36fd-4bfa-9e99-3258b230f20b?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa44139a-36fd-4bfa-9e99-3258b230f20b","name":"fa44139a-36fd-4bfa-9e99-3258b230f20b","status":"Succeeded","startTime":"2020-02-20T15:23:53.4415048Z","endTime":"2020-02-20T15:23:54.7615816Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca","name":"cc7887cd-e0f0-4310-9fbe-e0eb1181fcca","status":"Succeeded","startTime":"2020-05-13T11:04:53.5645551Z","endTime":"2020-05-13T11:04:53.6739686Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:25 GMT + - Wed, 13 May 2020 11:05:25 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A54.6539689Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.6743118Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '453' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:26 GMT + - Wed, 13 May 2020 11:05:26 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A54.6539689Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.6743118Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A54.6539689Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.6743118Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '453' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:27 GMT + - Wed, 13 May 2020 11:05:27 GMT etag: - - W/"datetime'2020-02-20T15%3A23%3A54.6539689Z'" + - W/"datetime'2020-05-13T11%3A04%3A53.6743118Z'" expires: - '-1' pragma: @@ -243,28 +243,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A24%3A50.0670339Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A30.1842501Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '483' + - '478' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:24:51 GMT + - Wed, 13 May 2020 11:05:31 GMT etag: - - W/"datetime'2020-02-20T15%3A24%3A50.0670339Z'" + - W/"datetime'2020-05-13T11%3A05%3A30.1842501Z'" expires: - '-1' pragma: @@ -282,7 +282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml index 3463063d25a..baa431ea26b 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml @@ -17,30 +17,30 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A51.3375094Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A27.5326462Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/67c11eda-69f8-447f-8b06-4e387596c2de?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60a43ed2-78a1-4502-8812-21516ad8db9c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:35:50 GMT + - Wed, 13 May 2020 11:07:28 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A51.3375094Z'" + - W/"datetime'2020-05-13T11%3A07%3A27.5326462Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -74,13 +74,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67c11eda-69f8-447f-8b06-4e387596c2de?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60a43ed2-78a1-4502-8812-21516ad8db9c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67c11eda-69f8-447f-8b06-4e387596c2de","name":"67c11eda-69f8-447f-8b06-4e387596c2de","status":"Succeeded","startTime":"2020-02-20T15:35:50.8999964Z","endTime":"2020-02-20T15:35:52.0910241Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60a43ed2-78a1-4502-8812-21516ad8db9c","name":"60a43ed2-78a1-4502-8812-21516ad8db9c","status":"Succeeded","startTime":"2020-05-13T11:07:27.1184451Z","endTime":"2020-05-13T11:07:28.3217385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:22 GMT + - Wed, 13 May 2020 11:07:59 GMT expires: - '-1' pragma: @@ -127,13 +127,13 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A51.9941274Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A28.2143051Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:22 GMT + - Wed, 13 May 2020 11:07:59 GMT etag: - - W/"datetime'2020-02-20T15%3A35%3A51.9941274Z'" + - W/"datetime'2020-05-13T11%3A07%3A28.2143051Z'" expires: - '-1' pragma: @@ -187,20 +187,20 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A26.7567879Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A09.5471862Z''\"","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/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/807e34a5-e630-4ae3-ab3f-70016bf0fa8d?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -208,9 +208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:26 GMT + - Wed, 13 May 2020 11:08:10 GMT etag: - - W/"datetime'2020-02-20T15%3A36%3A26.7567879Z'" + - W/"datetime'2020-05-13T11%3A08%3A09.5471862Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -244,13 +244,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/807e34a5-e630-4ae3-ab3f-70016bf0fa8d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac","name":"e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac","status":"Succeeded","startTime":"2020-02-20T15:36:26.3217224Z","endTime":"2020-02-20T15:36:27.708412Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/807e34a5-e630-4ae3-ab3f-70016bf0fa8d","name":"807e34a5-e630-4ae3-ab3f-70016bf0fa8d","status":"Succeeded","startTime":"2020-05-13T11:08:09.125015Z","endTime":"2020-05-13T11:08:10.5156841Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:57 GMT + - Wed, 13 May 2020 11:09:06 GMT expires: - '-1' pragma: @@ -297,13 +297,13 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A27.6075845Z''\"","location":"westus2stage","properties":{"poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A10.4090185Z''\"","location":"westus2stage","properties":{"poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:36:58 GMT + - Wed, 13 May 2020 11:09:06 GMT etag: - - W/"datetime'2020-02-20T15%3A36%3A27.6075845Z'" + - W/"datetime'2020-05-13T11%3A08%3A10.4090185Z'" expires: - '-1' pragma: @@ -352,15 +352,15 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A27.6075845Z''\"","location":"westus2stage","properties":{"poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A10.4090185Z''\"","location":"westus2stage","properties":{"poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -371,9 +371,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:37:01 GMT + - Wed, 13 May 2020 11:09:10 GMT etag: - - W/"datetime'2020-02-20T15%3A36%3A27.6075845Z'" + - W/"datetime'2020-05-13T11%3A08%3A10.4090185Z'" expires: - '-1' pragma: @@ -414,15 +414,15 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A03.8045897Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A14.1104826Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context @@ -433,9 +433,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Feb 2020 15:37:05 GMT + - Wed, 13 May 2020 11:09:16 GMT etag: - - W/"datetime'2020-02-20T15%3A37%3A03.8045897Z'" + - W/"datetime'2020-05-13T11%3A09%3A14.1104826Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml index 654e0cb8a89..9f22a93723a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"32a8ccdb-5af4-4d68-9e18-1802ce4e23f5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b0690e3b-beee-4248-bc18-e856633929a8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"54764d89-bae9-4d6c-a772-8cc98a050f92\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d9f5a0a4-5e81-4829-9b42-5e9705f6939a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/336b976b-ef9a-4222-97db-eea8c50823ec?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:43:57 GMT + - Wed, 13 May 2020 11:14:29 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff28242e-122a-4d6e-8acd-7adc70f0df3b + - 2c8a3f8c-297f-44b0-8ea0-0804836d704c x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1197' status: code: 201 message: Created @@ -80,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d9f5a0a4-5e81-4829-9b42-5e9705f6939a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/336b976b-ef9a-4222-97db-eea8c50823ec?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:01 GMT + - Wed, 13 May 2020 11:14:34 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9af18439-cc0f-4a8b-9d44-e0de7c7d7beb + - 4c124726-febc-4884-832e-bde408821e25 status: code: 200 message: OK @@ -130,17 +130,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a7fe4f62-586a-49c0-b169-010d1243369b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2a34293b-23fb-42c7-ae67-9fd17b04ef10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54764d89-bae9-4d6c-a772-8cc98a050f92\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:01 GMT + - Wed, 13 May 2020 11:14:34 GMT etag: - - W/"a7fe4f62-586a-49c0-b169-010d1243369b" + - W/"2a34293b-23fb-42c7-ae67-9fd17b04ef10" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac2a4a03-d18e-4304-88d3-49f7b379ccff + - 526b2fcd-c622-4c3c-90cf-16d5d095cfb8 status: code: 200 message: OK @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a7fe4f62-586a-49c0-b169-010d1243369b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2a34293b-23fb-42c7-ae67-9fd17b04ef10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54764d89-bae9-4d6c-a772-8cc98a050f92\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:02 GMT + - Wed, 13 May 2020 11:14:34 GMT etag: - - W/"a7fe4f62-586a-49c0-b169-010d1243369b" + - W/"2a34293b-23fb-42c7-ae67-9fd17b04ef10" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12a84a76-6747-4973-b590-7f6f9f9b4858 + - e5e44f48-9d0c-40c9-93a7-f6ba04749735 status: code: 200 message: OK @@ -262,8 +262,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"dfe4a4ee-8af1-498f-a687-86e91bc510c6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"54764d89-bae9-4d6c-a772-8cc98a050f92\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"dfe4a4ee-8af1-498f-a687-86e91bc510c6\\\"\",\r\n + \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"dfe4a4ee-8af1-498f-a687-86e91bc510c6\\\"\",\r\n + \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/45e43e72-df18-4277-be56-201f2f64a745?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eda961b8-ce86-44c4-b5dd-bb6c8566414e?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:03 GMT + - Wed, 13 May 2020 11:14:36 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8f55551-cb5f-44a1-a153-1284efd16b05 + - 6bf91893-7752-4398-bd8f-e3d64241ed65 x-ms-ratelimit-remaining-subscription-writes: - '1191' status: @@ -342,10 +342,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/45e43e72-df18-4277-be56-201f2f64a745?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eda961b8-ce86-44c4-b5dd-bb6c8566414e?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:07 GMT + - Wed, 13 May 2020 11:14:40 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 566c3a12-a9d4-4111-baed-61714bd5a35c + - a1237e52-d00b-46ef-b49c-546682e8348e status: code: 200 message: OK @@ -392,27 +392,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.0.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"042a9dc9-6a0a-473e-98b3-9e629e018f44\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54764d89-bae9-4d6c-a772-8cc98a050f92\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"042a9dc9-6a0a-473e-98b3-9e629e018f44\\\"\",\r\n + \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"042a9dc9-6a0a-473e-98b3-9e629e018f44\\\"\",\r\n + \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:07 GMT + - Wed, 13 May 2020 11:14:41 GMT etag: - - W/"042a9dc9-6a0a-473e-98b3-9e629e018f44" + - W/"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84" expires: - '-1' pragma: @@ -450,12 +450,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f0cc839-8456-43b1-a575-ab39aac64af8 + - 96f4f686-0817-4804-bfd9-fc952fe29c38 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -466,36 +466,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A44%3A14.0175176Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A14%3A49.2523834Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/westus2/operationResults/a9f7cc4c-8d57-4a30-af78-f682b5ddc775?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/222c81f5-647a-4df2-9f22-17190595627a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:15 GMT + - Wed, 13 May 2020 11:14:49 GMT etag: - - W/"datetime'2020-04-08T03%3A44%3A14.0175176Z'" + - W/"datetime'2020-05-13T11%3A14%3A49.2523834Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -529,24 +529,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9f7cc4c-8d57-4a30-af78-f682b5ddc775?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/222c81f5-647a-4df2-9f22-17190595627a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9f7cc4c-8d57-4a30-af78-f682b5ddc775","name":"a9f7cc4c-8d57-4a30-af78-f682b5ddc775","status":"Succeeded","startTime":"2020-04-08T03:44:13.923019Z","endTime":"2020-04-08T03:44:14.0793379Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/222c81f5-647a-4df2-9f22-17190595627a","name":"222c81f5-647a-4df2-9f22-17190595627a","status":"Succeeded","startTime":"2020-05-13T11:14:48.80793Z","endTime":"2020-05-13T11:14:50.0266023Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:47 GMT + - Wed, 13 May 2020 11:15:21 GMT expires: - '-1' pragma: @@ -582,26 +582,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-04-08T03%3A44%3A14.0785617Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A14%3A49.914025Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:47 GMT + - Wed, 13 May 2020 11:15:21 GMT etag: - - W/"datetime'2020-04-08T03%3A44%3A14.0785617Z'" + - W/"datetime'2020-05-13T11%3A14%3A49.914025Z'" expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -636,36 +636,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A44%3A52.752503Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A15%3A30.2491614Z''\"","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/westus2/operationResults/8a03877f-0d5c-43bb-887e-d5d2e61cb8cc?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/82b8e163-b210-45a5-9e20-685d63a0b61f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '541' + - '547' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:44:53 GMT + - Wed, 13 May 2020 11:15:31 GMT etag: - - W/"datetime'2020-04-08T03%3A44%3A52.752503Z'" + - W/"datetime'2020-05-13T11%3A15%3A30.2491614Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1191' x-powered-by: - ASP.NET status: @@ -699,24 +699,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a03877f-0d5c-43bb-887e-d5d2e61cb8cc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/82b8e163-b210-45a5-9e20-685d63a0b61f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a03877f-0d5c-43bb-887e-d5d2e61cb8cc","name":"8a03877f-0d5c-43bb-887e-d5d2e61cb8cc","status":"Succeeded","startTime":"2020-04-08T03:44:52.7137221Z","endTime":"2020-04-08T03:44:53.0900038Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/82b8e163-b210-45a5-9e20-685d63a0b61f","name":"82b8e163-b210-45a5-9e20-685d63a0b61f","status":"Succeeded","startTime":"2020-05-13T11:15:29.7835329Z","endTime":"2020-05-13T11:15:31.2174656Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:25 GMT + - Wed, 13 May 2020 11:16:02 GMT expires: - '-1' pragma: @@ -752,26 +752,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-04-08T03%3A44%3A53.0957519Z''\"","location":"westus2","properties":{"poolId":"7da2f4f4-1bfa-4534-f54e-5520c07e2609","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A15%3A31.1150028Z''\"","location":"westus2stage","properties":{"poolId":"9e4dbde5-67fc-dc32-12d8-4de25f51512f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:25 GMT + - Wed, 13 May 2020 11:16:02 GMT etag: - - W/"datetime'2020-04-08T03%3A44%3A53.0957519Z'" + - W/"datetime'2020-05-13T11%3A15%3A31.1150028Z'" expires: - '-1' pragma: @@ -794,7 +794,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -806,37 +806,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '400' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T03%3A45%3A33.3308201Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A16%3A11.9926718Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '915' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:45:33 GMT + - Wed, 13 May 2020 11:16:13 GMT etag: - - W/"datetime'2020-04-08T03%3A45%3A33.3308201Z'" + - W/"datetime'2020-05-13T11%3A16%3A11.9926718Z'" expires: - '-1' pragma: @@ -871,510 +871,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:46: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:47: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:47: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:48: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:48: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:49: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:49: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Apr 2020 03:50: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:50:39 GMT + - Wed, 13 May 2020 11:16:43 GMT expires: - '-1' pragma: @@ -1411,24 +925,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:09 GMT + - Wed, 13 May 2020 11:17:14 GMT expires: - '-1' pragma: @@ -1465,24 +979,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:51:40 GMT + - Wed, 13 May 2020 11:17:45 GMT expires: - '-1' pragma: @@ -1519,24 +1033,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:11 GMT + - Wed, 13 May 2020 11:18:15 GMT expires: - '-1' pragma: @@ -1573,24 +1087,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:52:41 GMT + - Wed, 13 May 2020 11:18:46 GMT expires: - '-1' pragma: @@ -1627,24 +1141,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:11 GMT + - Wed, 13 May 2020 11:19:16 GMT expires: - '-1' pragma: @@ -1681,24 +1195,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:53:43 GMT + - Wed, 13 May 2020 11:19:46 GMT expires: - '-1' pragma: @@ -1735,24 +1249,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:13 GMT + - Wed, 13 May 2020 11:20:16 GMT expires: - '-1' pragma: @@ -1789,24 +1303,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:54:43 GMT + - Wed, 13 May 2020 11:20:47 GMT expires: - '-1' pragma: @@ -1843,24 +1357,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:55:14 GMT + - Wed, 13 May 2020 11:21:17 GMT expires: - '-1' pragma: @@ -1897,24 +1411,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:55:45 GMT + - Wed, 13 May 2020 11:21:48 GMT expires: - '-1' pragma: @@ -1951,24 +1465,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:14 GMT + - Wed, 13 May 2020 11:22:18 GMT expires: - '-1' pragma: @@ -2005,24 +1519,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:56:45 GMT + - Wed, 13 May 2020 11:22:49 GMT expires: - '-1' pragma: @@ -2059,24 +1573,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:57:16 GMT + - Wed, 13 May 2020 11:23:20 GMT expires: - '-1' pragma: @@ -2113,24 +1627,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:57:46 GMT + - Wed, 13 May 2020 11:23:50 GMT expires: - '-1' pragma: @@ -2167,24 +1681,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:58:17 GMT + - Wed, 13 May 2020 11:24:21 GMT expires: - '-1' pragma: @@ -2221,24 +1735,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:58:48 GMT + - Wed, 13 May 2020 11:24:51 GMT expires: - '-1' pragma: @@ -2275,24 +1789,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:59:19 GMT + - Wed, 13 May 2020 11:25:21 GMT expires: - '-1' pragma: @@ -2329,24 +1843,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 03:59:49 GMT + - Wed, 13 May 2020 11:25:51 GMT expires: - '-1' pragma: @@ -2383,24 +1897,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:00:20 GMT + - Wed, 13 May 2020 11:26:23 GMT expires: - '-1' pragma: @@ -2437,24 +1951,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:00:50 GMT + - Wed, 13 May 2020 11:26:53 GMT expires: - '-1' pragma: @@ -2491,24 +2005,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:01:21 GMT + - Wed, 13 May 2020 11:27:23 GMT expires: - '-1' pragma: @@ -2545,24 +2059,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:01:52 GMT + - Wed, 13 May 2020 11:27:53 GMT expires: - '-1' pragma: @@ -2599,24 +2113,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:23 GMT + - Wed, 13 May 2020 11:28:23 GMT expires: - '-1' pragma: @@ -2653,24 +2167,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:02:53 GMT + - Wed, 13 May 2020 11:28:54 GMT expires: - '-1' pragma: @@ -2707,24 +2221,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:03:23 GMT + - Wed, 13 May 2020 11:29:24 GMT expires: - '-1' pragma: @@ -2761,24 +2275,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:03:54 GMT + - Wed, 13 May 2020 11:29:55 GMT expires: - '-1' pragma: @@ -2815,24 +2329,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:04:25 GMT + - Wed, 13 May 2020 11:30:26 GMT expires: - '-1' pragma: @@ -2869,24 +2383,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:04:55 GMT + - Wed, 13 May 2020 11:30:57 GMT expires: - '-1' pragma: @@ -2923,24 +2437,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:05:25 GMT + - Wed, 13 May 2020 11:31:27 GMT expires: - '-1' pragma: @@ -2977,24 +2491,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Creating","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:05:55 GMT + - Wed, 13 May 2020 11:31:57 GMT expires: - '-1' pragma: @@ -3031,24 +2545,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eceff5ae-0810-40e6-96a1-17ed093e5373","name":"eceff5ae-0810-40e6-96a1-17ed093e5373","status":"Succeeded","startTime":"2020-04-08T03:45:33.2885376Z","endTime":"2020-04-08T04:06:18.1060857Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Succeeded","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"2020-05-13T11:32:19.1147517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:27 GMT + - Wed, 13 May 2020 11:32:28 GMT expires: - '-1' pragma: @@ -3085,26 +2599,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A06%3A18.1110905Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_c54547ab","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A18.9252895Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1558' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:28 GMT + - Wed, 13 May 2020 11:32:28 GMT etag: - - W/"datetime'2020-04-08T04%3A06%3A18.1110905Z'" + - W/"datetime'2020-05-13T11%3A32%3A18.9252895Z'" expires: - '-1' pragma: @@ -3140,28 +2654,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A06%3A18.1110905Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_c54547ab","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A18.9252895Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1558' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:30 GMT + - Wed, 13 May 2020 11:32:32 GMT etag: - - W/"datetime'2020-04-08T04%3A06%3A18.1110905Z'" + - W/"datetime'2020-05-13T11%3A32%3A18.9252895Z'" expires: - '-1' pragma: @@ -3202,28 +2716,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-netapp/0.8.0 - Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-04-08T04%3A06%3A33.1609594Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}],"provisioningState":"Succeeded","fileSystemId":"20458e67-1b57-0de9-c6f1-0bb089ace1af","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_2ebb0649e26111e988286e573da70a0d_c54547ab","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A37.2380633Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '1583' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Apr 2020 04:06:38 GMT + - Wed, 13 May 2020 11:32:43 GMT etag: - - W/"datetime'2020-04-08T04%3A06%3A33.1609594Z'" + - W/"datetime'2020-05-13T11%3A32%3A37.2380633Z'" expires: - '-1' pragma: @@ -3241,7 +2755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1193' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py index 327c79bbcd5..e2a7dee869f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -LOCATION = "westus2stage" +LOCATION = "westus2" # No tidy up of tests required. The resource group is automatically removed diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py index 45a2cc13eb3..535517fb9fe 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py @@ -1,4 +1,4 @@ -# -------------------------------------------------------------------------------------------- +33# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- @@ -22,17 +22,22 @@ def current_subscription(self): subs = self.cmd("az account show").get_output_in_json() return subs['id'] - def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None): + def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None, snapshot_id=None, volume_only=False): vnet_name = self.create_random_name(prefix='cli-vnet-', length=24) file_path = volume_name1 # creation_token vnet_name = "cli-vnet-lefr-02" - subnet_name = "cli-subnet-lefr-02" + subnet_name = "cli-subnet-lefr-02" tag = "--tags %s" % tags if tags is not None else "" - self.setup_vnet(rg, vnet_name, subnet_name) - self.cmd("netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, ANF_LOCATION)).get_output_in_json() - self.cmd("netappfiles pool create -g %s -a %s -p %s -l %s %s %s" % (rg, account_name, pool_name, ANF_LOCATION, POOL_DEFAULT, tag)).get_output_in_json() - volume1 = self.cmd("netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() + if not volume_only: + self.setup_vnet(rg, vnet_name, subnet_name) + self.cmd("netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, ANF_LOCATION)).get_output_in_json() + self.cmd("netappfiles pool create -g %s -a %s -p %s -l %s %s %s" % (rg, account_name, pool_name, ANF_LOCATION, POOL_DEFAULT, tag)).get_output_in_json() + + if snapshot_id: + volume1 = self.cmd("netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s %s --snapshot-id %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag, snapshot_id)).get_output_in_json() + else: + volume1 = self.cmd("netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() return volume1 @@ -57,6 +62,31 @@ def test_create_delete_snapshots(self): snapshot_list = self.cmd("az netappfiles snapshot list --resource-group %s --account-name %s --pool-name %s --volume-name %s" % (rg, account_name, pool_name, volume_name)).get_output_in_json() assert len(snapshot_list) == 0 + @ResourceGroupPreparer(name_prefix='cli_netapp_test_snap_') + def test_create_volume_from_snapshot(self): + account_name = self.create_random_name(prefix='cli-acc-', length=24) + pool_name = self.create_random_name(prefix='cli-pool-', length=24) + volume_name = self.create_random_name(prefix='cli-vol-', length=24) + restored_volume_name = self.create_random_name(prefix='cli-vol-restored', length=24) + snapshot_name = self.create_random_name(prefix='cli-sn-', length=24) + restored_volume_name = self.create_random_name(prefix='cli-sn-2', length=24) + rg = '{rg}' + + volume = self.create_volume(account_name, pool_name, volume_name, rg) + snapshot = self.cmd("az netappfiles snapshot create -g %s -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (rg, account_name, pool_name, volume_name, snapshot_name, ANF_LOCATION, volume['fileSystemId'])).get_output_in_json() + assert snapshot['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name + # check the created fields is populated. Checking exact dates are a little harder due to session records + assert snapshot['created'] is not None + + snapshot_list = self.cmd("az netappfiles snapshot list --resource-group %s --account-name %s --pool-name %s --volume-name %s" % (rg, account_name, pool_name, volume_name)).get_output_in_json() + assert len(snapshot_list) == 1 + snapshot = self.cmd("az netappfiles snapshot show -g {rg} -a %s -p %s -v %s -s %s" % (account_name, pool_name, volume_name, snapshot_name)).get_output_in_json() + assert snapshot['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name + volume_only = True + restored_volume = self.create_volume(account_name, pool_name, restored_volume_name, rg, snapshot_id=snapshot["snapshotId"], volume_only=volume_only) + assert restored_volume['name'] == account_name + '/' + pool_name + '/' + restored_volume_name + + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_snapshot_') def test_list_snapshots(self): account_name = self.create_random_name(prefix='cli-acc-', length=24) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py index f1acc10dde8..00a2da462f5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py @@ -9,9 +9,9 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" RG_LOCATION = "westus2" -ANF_LOCATION = "westus2" -DP_RG_LOCATION = "westus2" -DP_ANF_LOCATION = "westus2" +ANF_LOCATION = "westus2stage" +DP_RG_LOCATION = "southcentralus" +DP_ANF_LOCATION = "southcentralusstage" GIB_SCALE = 1024 * 1024 * 1024 # No tidy up of tests required. The resource group is automatically removed @@ -46,11 +46,18 @@ def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None, vo def wait_for_replication_status(self, target_state, rg_r, account_name_r, pool_name_r, volume_name_r): # python isn't good at do-while loops but loop until we get the target state - while True: + attempts = 0 + replication_status = self.cmd("az netappfiles volume replication status -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)).get_output_in_json() + + while attempts < 10: + attempts += 1 replication_status = self.cmd("az netappfiles volume replication status -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)).get_output_in_json() - if (replication_status['mirrorState'] == target_state): - break - time.sleep(1) + if (replication_status['mirrorState'] == target_state ): + break + if self.is_live or self.in_recording: + time.sleep(60) + + assert replication_status['mirrorState'] == target_state @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') def test_create_delete_volumes(self): @@ -94,7 +101,7 @@ def test_create_volume_with_subnet_in_different_rg(self): file_path = volume_name # creation_token subnet_name = self.create_random_name(prefix='cli-subnet-', length=16) - subnet_rg = self.create_random_name(prefix='cli-rg-', length=24) + subnet_rg = self.create_random_name(prefix='cli-rg-subnet', length=24) subs_id = self.current_subscription() self.cmd("az group create -n %s --subscription %s -l %s" % (subnet_rg, subs_id, RG_LOCATION)).get_output_in_json() @@ -112,7 +119,8 @@ def test_create_volume_with_subnet_in_different_rg(self): self.cmd("az group delete --yes -n %s" % (subnet_rg)) @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') - def test_perform_replication(self): + @ResourceGroupPreparer(name_prefix='cli_netappf_test_volume2_', parameter_name='replication_resourcegroup') + def test_perform_replication(self, resource_group, replication_resourcegroup): # create source volume account_name = self.create_random_name(prefix='cli-acc-', length=24) account_name_r = self.create_random_name(prefix='cli-acc-', length=24) @@ -120,6 +128,7 @@ def test_perform_replication(self): pool_name_r = self.create_random_name(prefix='cli-pool-', length=24) volume_name = self.create_random_name(prefix='cli-vol-', length=24) volume_name_r = self.create_random_name(prefix='cli-vol-', length=24) + rg = '{rg}' src_volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') assert src_volume['id'] is not None @@ -128,9 +137,10 @@ def test_perform_replication(self): vnet_name = self.create_random_name(prefix='cli-vnet-', length=24) file_path = volume_name_r # creation_token subnet_name = self.create_random_name(prefix='cli-subnet-', length=16) - rg_r = self.create_random_name(prefix='cli-rg-', length=24) + # rg_r = self.create_random_name(prefix='cli-rg-', length=24) + rg_r = replication_resourcegroup subs_id = self.current_subscription() - self.cmd("az group create -n %s --subscription %s -l %s" % (rg_r, subs_id, DP_RG_LOCATION)).get_output_in_json() + # self.cmd("az group create -n %s --subscription %s -l %s" % (rg_r, subs_id, DP_RG_LOCATION)).get_output_in_json() self.setup_vnet(rg_r, vnet_name, subnet_name, '10.1.0.0', DP_RG_LOCATION) self.cmd("az netappfiles account create -g %s -a %s -l %s" % (rg_r, account_name_r, DP_ANF_LOCATION)).get_output_in_json() @@ -146,7 +156,7 @@ def test_perform_replication(self): time.sleep(2) # approve - self.cmd("az netappfiles volume replication approve -g %s -a %s -p %s -v %s --remote-volume-resource-id %s" % ('{rg}', account_name, pool_name, volume_name, dst_volume['id'])) + self.cmd("az netappfiles volume replication approve -g %s -a %s -p %s -v %s --remote-volume-resource-id %s" % (rg, account_name, pool_name, volume_name, dst_volume['id'])) self.wait_for_replication_status("Mirrored", rg_r, account_name_r, pool_name_r, volume_name_r) # break From 4583a671b45acdb07c0a6911e2a284e8603313e0 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Wed, 13 May 2020 16:42:31 +0000 Subject: [PATCH 2/7] Updated test files --- .../recordings/test_active_directory.yaml | 90 +- .../test_create_delete_account.yaml | 114 +- .../recordings/test_create_delete_pool.yaml | 136 +- .../test_create_delete_snapshots.yaml | 806 +++------- .../test_create_delete_volumes.yaml | 955 ++++++++---- .../test_create_pool_string_size.yaml | 30 +- .../test_create_pool_too_small.yaml | 32 +- .../test_create_volume_from_snapshot.yaml | 684 +++++---- ...te_volume_with_subnet_in_different_rg.yaml | 760 +++++---- .../latest/recordings/test_export_policy.yaml | 388 +++-- .../test_export_policy_non_default.yaml | 338 ++-- .../recordings/test_get_account_by_name.yaml | 44 +- .../recordings/test_get_pool_by_name.yaml | 82 +- .../latest/recordings/test_get_snapshot.yaml | 274 ++-- .../recordings/test_get_volume_by_name.yaml | 1104 ++++++++++--- .../latest/recordings/test_list_accounts.yaml | 104 +- .../recordings/test_list_mount_targets.yaml | 234 +-- .../latest/recordings/test_list_pools.yaml | 136 +- .../recordings/test_list_snapshots.yaml | 274 ++-- .../latest/recordings/test_list_volumes.yaml | 1003 +++++------- .../recordings/test_perform_replication.yaml | 973 +++++------- .../recordings/test_update_account.yaml | 52 +- .../latest/recordings/test_update_pool.yaml | 74 +- .../latest/recordings/test_update_volume.yaml | 1366 ++--------------- 24 files changed, 4794 insertions(+), 5259 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml index 6679dee059f..ef273457c6f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml @@ -18,19 +18,19 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.1539414Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.0569242Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","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/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97fec65-2b93-49fb-85f2-f98a0e983220?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:54 GMT + - Wed, 13 May 2020 14:12:14 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.1539414Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.0569242Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97fec65-2b93-49fb-85f2-f98a0e983220?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2ec8503-6084-4c22-b741-fb00c87e79e1","name":"d2ec8503-6084-4c22-b741-fb00c87e79e1","status":"Succeeded","startTime":"2020-05-13T11:04:53.1114376Z","endTime":"2020-05-13T11:04:53.2208786Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97fec65-2b93-49fb-85f2-f98a0e983220","name":"f97fec65-2b93-49fb-85f2-f98a0e983220","status":"Succeeded","startTime":"2020-05-13T14:12:13.0068086Z","endTime":"2020-05-13T14:12:13.1163913Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:44 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.2179873Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1129637Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:44 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.2179873Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1129637Z'" expires: - '-1' pragma: @@ -183,14 +183,14 @@ interactions: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.2179873Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1129637Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -201,9 +201,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:29 GMT + - Wed, 13 May 2020 14:12:46 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.2179873Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1129637Z'" expires: - '-1' pragma: @@ -245,14 +245,14 @@ interactions: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.7653749Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A48.3509979Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"bdd30f21-cafa-51e6-ad34-15f5156aa459","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context @@ -263,9 +263,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:31 GMT + - Wed, 13 May 2020 14:12:48 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A31.7653749Z'" + - W/"datetime'2020-05-13T14%3A12%3A48.3509979Z'" expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' x-powered-by: - ASP.NET status: @@ -304,14 +304,14 @@ interactions: - -g -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A32.0685901Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A48.7392745Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"bdd30f21-cafa-51e6-ad34-15f5156aa459","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context @@ -322,9 +322,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:33 GMT + - Wed, 13 May 2020 14:12:50 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A32.0685901Z'" + - W/"datetime'2020-05-13T14%3A12%3A48.7392745Z'" expires: - '-1' pragma: @@ -361,14 +361,14 @@ interactions: - -g -n --active-directory User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A32.0685901Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A48.7392745Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"bdd30f21-cafa-51e6-ad34-15f5156aa459","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context @@ -379,9 +379,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:34 GMT + - Wed, 13 May 2020 14:12:53 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A32.0685901Z'" + - W/"datetime'2020-05-13T14%3A12%3A48.7392745Z'" expires: - '-1' pragma: @@ -423,19 +423,19 @@ interactions: - -g -n --active-directory User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A35.530046Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"784042ae-4144-4257-14f3-99256319731b","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A54.005019Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"bdd30f21-cafa-51e6-ad34-15f5156aa459","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ddb76a5-74b5-4f45-a4d4-092b78fa7fa0?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -443,9 +443,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:35 GMT + - Wed, 13 May 2020 14:12:54 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A35.530046Z'" + - W/"datetime'2020-05-13T14%3A12%3A54.005019Z'" expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -484,12 +484,12 @@ interactions: - -g -n --active-directory User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ddb76a5-74b5-4f45-a4d4-092b78fa7fa0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50623fb7-bceb-43b9-80e7-bea1e20b3e9e","name":"50623fb7-bceb-43b9-80e7-bea1e20b3e9e","status":"Succeeded","startTime":"2020-05-13T11:05:35.4875023Z","endTime":"2020-05-13T11:05:35.8938114Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ddb76a5-74b5-4f45-a4d4-092b78fa7fa0","name":"6ddb76a5-74b5-4f45-a4d4-092b78fa7fa0","status":"Succeeded","startTime":"2020-05-13T14:12:53.9413937Z","endTime":"2020-05-13T14:12:54.4000094Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -500,7 +500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:06 GMT + - Wed, 13 May 2020 14:13:24 GMT expires: - '-1' pragma: @@ -537,12 +537,12 @@ interactions: - -g -n --active-directory User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A35.8993081Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A54.3962973Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -553,9 +553,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:06 GMT + - Wed, 13 May 2020 14:13:24 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A35.8993081Z'" + - W/"datetime'2020-05-13T14%3A12%3A54.3962973Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml index 6406d8e4fab..1ec48e6b106 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml @@ -18,29 +18,29 @@ interactions: - --resource-group --account-name -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5182004Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A12.2063199Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","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/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f63831-1667-4ebd-aca8-2aaa1add1eaa?api-version=2019-10-01 cache-control: - no-cache content-length: - - '493' + - '494' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:54 GMT + - Wed, 13 May 2020 14:12:13 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.5182004Z'" + - W/"datetime'2020-05-13T14%3A12%3A12.2063199Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1187' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - --resource-group --account-name -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f63831-1667-4ebd-aca8-2aaa1add1eaa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2406cb0d-22c0-49d7-b25b-46b3be2485e1","name":"2406cb0d-22c0-49d7-b25b-46b3be2485e1","status":"Succeeded","startTime":"2020-05-13T11:04:53.4548071Z","endTime":"2020-05-13T11:04:53.5810377Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6f63831-1667-4ebd-aca8-2aaa1add1eaa","name":"a6f63831-1667-4ebd-aca8-2aaa1add1eaa","status":"Succeeded","startTime":"2020-05-13T14:12:12.1371576Z","endTime":"2020-05-13T14:12:12.2777822Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:45 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - --resource-group --account-name -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5772428Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A12.2763693Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:45 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.5772428Z'" + - W/"datetime'2020-05-13T14%3A12%3A12.2763693Z'" expires: - '-1' pragma: @@ -183,14 +183,14 @@ interactions: - --resource-group User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.5772428Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A12.2763693Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -201,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:29 GMT + - Wed, 13 May 2020 14:12:48 GMT expires: - '-1' pragma: @@ -240,7 +240,7 @@ interactions: - --resource-group --account-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -252,17 +252,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/afd388c0-0415-4bd0-b9ce-92b8294c1fe5?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:05:32 GMT + - Wed, 13 May 2020 14:12:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/afd388c0-0415-4bd0-b9ce-92b8294c1fe5?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -274,7 +274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' x-powered-by: - ASP.NET status: @@ -295,12 +295,12 @@ interactions: - --resource-group --account-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/afd388c0-0415-4bd0-b9ce-92b8294c1fe5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d375f-9165-4ff5-997e-99ddbfc8aee9","name":"508d375f-9165-4ff5-997e-99ddbfc8aee9","status":"Succeeded","startTime":"2020-05-13T11:05:32.6418198Z","endTime":"2020-05-13T11:05:32.8293604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/afd388c0-0415-4bd0-b9ce-92b8294c1fe5","name":"afd388c0-0415-4bd0-b9ce-92b8294c1fe5","status":"Succeeded","startTime":"2020-05-13T14:12:52.2662673Z","endTime":"2020-05-13T14:12:52.3755845Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -311,7 +311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:03 GMT + - Wed, 13 May 2020 14:13:22 GMT expires: - '-1' pragma: @@ -348,7 +348,7 @@ interactions: - --resource-group User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -364,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:05 GMT + - Wed, 13 May 2020 14:13:24 GMT expires: - '-1' pragma: @@ -397,19 +397,19 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.7936817Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A27.8180459Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","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/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a977673-b538-4399-8362-30720c98e385?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -417,9 +417,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:09 GMT + - Wed, 13 May 2020 14:13:28 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A08.7936817Z'" + - W/"datetime'2020-05-13T14%3A13%3A27.8180459Z'" expires: - '-1' pragma: @@ -433,7 +433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -454,12 +454,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a977673-b538-4399-8362-30720c98e385?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75b09ffa-235e-428e-92f4-282e8b7e0a0e","name":"75b09ffa-235e-428e-92f4-282e8b7e0a0e","status":"Succeeded","startTime":"2020-05-13T11:06:08.7358057Z","endTime":"2020-05-13T11:06:08.8608286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a977673-b538-4399-8362-30720c98e385","name":"2a977673-b538-4399-8362-30720c98e385","status":"Succeeded","startTime":"2020-05-13T14:13:27.7638106Z","endTime":"2020-05-13T14:13:27.8888328Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -470,7 +470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:40 GMT + - Wed, 13 May 2020 14:13:58 GMT expires: - '-1' pragma: @@ -507,12 +507,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.8597291Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A27.8900971Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -523,9 +523,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:40 GMT + - Wed, 13 May 2020 14:13:58 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A08.8597291Z'" + - W/"datetime'2020-05-13T14%3A13%3A27.8900971Z'" expires: - '-1' pragma: @@ -562,14 +562,14 @@ interactions: - --resource-group User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A08.8597291Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A27.8900971Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -580,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:43 GMT + - Wed, 13 May 2020 14:14:01 GMT expires: - '-1' pragma: @@ -619,7 +619,7 @@ interactions: - --resource-group -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -631,17 +631,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e247378-e48a-4447-966e-84c952461326?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:06:45 GMT + - Wed, 13 May 2020 14:14:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e247378-e48a-4447-966e-84c952461326?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -653,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' x-powered-by: - ASP.NET status: @@ -674,12 +674,12 @@ interactions: - --resource-group -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e247378-e48a-4447-966e-84c952461326?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a78a983-dc82-426e-92eb-f9282a59ec1e","name":"0a78a983-dc82-426e-92eb-f9282a59ec1e","status":"Succeeded","startTime":"2020-05-13T11:06:46.1298502Z","endTime":"2020-05-13T11:06:46.2711112Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e247378-e48a-4447-966e-84c952461326","name":"9e247378-e48a-4447-966e-84c952461326","status":"Succeeded","startTime":"2020-05-13T14:14:05.2923852Z","endTime":"2020-05-13T14:14:05.4017788Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -690,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:16 GMT + - Wed, 13 May 2020 14:14:36 GMT expires: - '-1' pragma: @@ -727,7 +727,7 @@ interactions: - --resource-group User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -743,7 +743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:18 GMT + - Wed, 13 May 2020 14:14:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml index 3036bfd1fa3..c7c8b3955c7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml @@ -18,19 +18,19 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A54.6459838Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A15.6635672Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/328e6bfa-29c7-4bdf-b584-e3e317ba0845?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:55 GMT + - Wed, 13 May 2020 14:12:16 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A54.6459838Z'" + - W/"datetime'2020-05-13T14%3A12%3A15.6635672Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -75,23 +75,23 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/328e6bfa-29c7-4bdf-b584-e3e317ba0845?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0b47d132-c1ff-4a6a-96a5-d9acfcfcc983","name":"0b47d132-c1ff-4a6a-96a5-d9acfcfcc983","status":"Succeeded","startTime":"2020-05-13T11:04:54.1926055Z","endTime":"2020-05-13T11:04:55.4292438Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/328e6bfa-29c7-4bdf-b584-e3e317ba0845","name":"328e6bfa-29c7-4bdf-b584-e3e317ba0845","status":"Succeeded","startTime":"2020-05-13T14:12:15.04703Z","endTime":"2020-05-13T14:12:16.7814955Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:26 GMT + - Wed, 13 May 2020 14:12:47 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A55.3136319Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A16.6635378Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:26 GMT + - Wed, 13 May 2020 14:12:48 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A55.3136319Z'" + - W/"datetime'2020-05-13T14%3A12%3A16.6635378Z'" expires: - '-1' pragma: @@ -188,19 +188,19 @@ interactions: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A37.0930842Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A12%3A58.5952199Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/2c440dbe-1c06-4768-91f3-4beede3354b9?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/09f87a96-db9b-4b11-82ed-53481314a166?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -208,9 +208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:38 GMT + - Wed, 13 May 2020 14:13:02 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A37.0930842Z'" + - W/"datetime'2020-05-13T14%3A12%3A58.5952199Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' x-powered-by: - ASP.NET status: @@ -245,12 +245,12 @@ interactions: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c440dbe-1c06-4768-91f3-4beede3354b9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/09f87a96-db9b-4b11-82ed-53481314a166?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c440dbe-1c06-4768-91f3-4beede3354b9","name":"2c440dbe-1c06-4768-91f3-4beede3354b9","status":"Succeeded","startTime":"2020-05-13T11:05:36.6176561Z","endTime":"2020-05-13T11:05:38.1486227Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/09f87a96-db9b-4b11-82ed-53481314a166","name":"09f87a96-db9b-4b11-82ed-53481314a166","status":"Succeeded","startTime":"2020-05-13T14:12:58.1417358Z","endTime":"2020-05-13T14:12:59.6576216Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:08 GMT + - Wed, 13 May 2020 14:13:32 GMT expires: - '-1' pragma: @@ -298,12 +298,12 @@ interactions: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A38.0199786Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f042d2fd-7235-6ce6-0ab7-d303c5c4df35","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A12%3A59.5161126Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f9b42fe9-e920-03dd-9e82-d95d3d3cc491","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:09 GMT + - Wed, 13 May 2020 14:13:33 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A38.0199786Z'" + - W/"datetime'2020-05-13T14%3A12%3A59.5161126Z'" expires: - '-1' pragma: @@ -353,14 +353,14 @@ interactions: - --resource-group --account-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A38.0199786Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f042d2fd-7235-6ce6-0ab7-d303c5c4df35","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A12%3A59.5161126Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f9b42fe9-e920-03dd-9e82-d95d3d3cc491","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -371,7 +371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:12 GMT + - Wed, 13 May 2020 14:13:37 GMT expires: - '-1' pragma: @@ -410,7 +410,7 @@ interactions: - --resource-group --account-name --pool-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -422,17 +422,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/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e33be352-0e63-46e5-8885-a2dcaefb2756?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:06:17 GMT + - Wed, 13 May 2020 14:13:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e33be352-0e63-46e5-8885-a2dcaefb2756?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -444,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' x-powered-by: - ASP.NET status: @@ -465,12 +465,12 @@ interactions: - --resource-group --account-name --pool-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e33be352-0e63-46e5-8885-a2dcaefb2756?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/998e5e2e-2748-459f-a49e-6fe62abfa09e","name":"998e5e2e-2748-459f-a49e-6fe62abfa09e","status":"Succeeded","startTime":"2020-05-13T11:06:16.4910697Z","endTime":"2020-05-13T11:06:17.3348837Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e33be352-0e63-46e5-8885-a2dcaefb2756","name":"e33be352-0e63-46e5-8885-a2dcaefb2756","status":"Succeeded","startTime":"2020-05-13T14:13:42.1664259Z","endTime":"2020-05-13T14:13:43.0258125Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -481,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:47 GMT + - Wed, 13 May 2020 14:14:13 GMT expires: - '-1' pragma: @@ -518,7 +518,7 @@ interactions: - --resource-group --account-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -536,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:49 GMT + - Wed, 13 May 2020 14:14:14 GMT expires: - '-1' pragma: @@ -578,19 +578,19 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A57.5827485Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A23.5302494Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/2c20ba60-a9f3-4c61-9e3b-4f298cded540?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3b6e5e63-24e6-4a69-a142-fe6e81e3c76d?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -598,9 +598,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:58 GMT + - Wed, 13 May 2020 14:14:24 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A57.5827485Z'" + - W/"datetime'2020-05-13T14%3A14%3A23.5302494Z'" expires: - '-1' pragma: @@ -614,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' x-powered-by: - ASP.NET status: @@ -635,12 +635,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c20ba60-a9f3-4c61-9e3b-4f298cded540?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3b6e5e63-24e6-4a69-a142-fe6e81e3c76d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2c20ba60-a9f3-4c61-9e3b-4f298cded540","name":"2c20ba60-a9f3-4c61-9e3b-4f298cded540","status":"Succeeded","startTime":"2020-05-13T11:06:57.125117Z","endTime":"2020-05-13T11:06:58.7838264Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3b6e5e63-24e6-4a69-a142-fe6e81e3c76d","name":"3b6e5e63-24e6-4a69-a142-fe6e81e3c76d","status":"Succeeded","startTime":"2020-05-13T14:14:23.053821Z","endTime":"2020-05-13T14:14:24.6789911Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -651,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:29 GMT + - Wed, 13 May 2020 14:14:55 GMT expires: - '-1' pragma: @@ -688,12 +688,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A58.6707977Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"5ace7d14-d3dc-af98-c7d5-29a6b59fcb51","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A24.5692573Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"3d585ddb-f788-c13e-1ca9-37b728ada384","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -704,9 +704,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:30 GMT + - Wed, 13 May 2020 14:14:56 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A58.6707977Z'" + - W/"datetime'2020-05-13T14%3A14%3A24.5692573Z'" expires: - '-1' pragma: @@ -745,7 +745,7 @@ interactions: - --resource-group -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -757,17 +757,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/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/73312f03-2854-4688-a688-879d9099e3c2?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:07:35 GMT + - Wed, 13 May 2020 14:15:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/73312f03-2854-4688-a688-879d9099e3c2?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -779,7 +779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -800,12 +800,12 @@ interactions: - --resource-group -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/73312f03-2854-4688-a688-879d9099e3c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/12d94f8d-8636-46e2-92ab-4184d4b0705d","name":"12d94f8d-8636-46e2-92ab-4184d4b0705d","status":"Succeeded","startTime":"2020-05-13T11:07:35.6273984Z","endTime":"2020-05-13T11:07:36.4243392Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/73312f03-2854-4688-a688-879d9099e3c2","name":"73312f03-2854-4688-a688-879d9099e3c2","status":"Succeeded","startTime":"2020-05-13T14:15:02.0888765Z","endTime":"2020-05-13T14:15:02.9483719Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:06 GMT + - Wed, 13 May 2020 14:15:32 GMT expires: - '-1' pragma: @@ -853,7 +853,7 @@ interactions: - --resource-group -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -871,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:09 GMT + - Wed, 13 May 2020 14:15:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml index 752a03094e5..cc1e77554f7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"f64e464e-dab4-4fac-80d7-f6c163f3ded0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"87d21133-e3c0-4275-a90f-f198c9261302\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d05dcecb-11df-4d47-a34c-690c730ea98d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/68e40c57-bc4e-459e-954b-e288c0400602?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f1ea64b-d6c8-44c7-8325-eb6cd8a08a72?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:45 GMT + - Wed, 13 May 2020 14:13:10 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 012cf3db-0e6f-49b3-8402-feb402484b79 + - 134af478-342c-47f0-bf53-f3905d0dba51 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1191' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/68e40c57-bc4e-459e-954b-e288c0400602?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f1ea64b-d6c8-44c7-8325-eb6cd8a08a72?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:49 GMT + - Wed, 13 May 2020 14:13:13 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6d5f945-36bd-4d7a-bace-335dbf9993e9 + - 4f56414c-2f1f-4301-9997-47b15919db9d status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"6bf57116-40d9-4b70-ae91-0ca3619d747e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a4aa8db6-00ab-42ce-a95b-74709aa9cbb3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d05dcecb-11df-4d47-a34c-690c730ea98d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:49 GMT + - Wed, 13 May 2020 14:13:13 GMT etag: - - W/"6bf57116-40d9-4b70-ae91-0ca3619d747e" + - W/"a4aa8db6-00ab-42ce-a95b-74709aa9cbb3" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d23941f6-c89d-41bb-aa87-49bf8b6be14f + - a88a778d-4b86-40d2-9034-1dfadbc1d733 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"6bf57116-40d9-4b70-ae91-0ca3619d747e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a4aa8db6-00ab-42ce-a95b-74709aa9cbb3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d05dcecb-11df-4d47-a34c-690c730ea98d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:50 GMT + - Wed, 13 May 2020 14:13:16 GMT etag: - - W/"6bf57116-40d9-4b70-ae91-0ca3619d747e" + - W/"a4aa8db6-00ab-42ce-a95b-74709aa9cbb3" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd43764e-c480-4ebd-97c2-bdf13bb247d2 + - 350ebfef-044c-4671-a55e-a17c5eb05975 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c3dca8a3-bcc6-44cc-bdb2-69ac823bb550\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d05dcecb-11df-4d47-a34c-690c730ea98d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n + \ \"etag\": \"W/\\\"c3dca8a3-bcc6-44cc-bdb2-69ac823bb550\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"3d1f1817-13d6-4ac6-aac2-d10888506d7a\\\"\",\r\n + \ \"etag\": \"W/\\\"c3dca8a3-bcc6-44cc-bdb2-69ac823bb550\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1de77fa-907e-483d-8771-f650f53b481b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/39d91459-9c60-4bd6-bda0-ba0bacfdb3e1?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:51 GMT + - Wed, 13 May 2020 14:13:17 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 086abc94-18b4-4728-9e3c-78042942cc73 + - e596ff68-aa3b-4446-a662-63a8b8b5e9b0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1191' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1de77fa-907e-483d-8771-f650f53b481b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/39d91459-9c60-4bd6-bda0-ba0bacfdb3e1?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:56 GMT + - Wed, 13 May 2020 14:13:21 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a9b4354-796f-4234-9109-e9b4e2b75f50 + - 4f0b8a69-fc21-4a3c-be95-073379150038 status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"85a0f8cd-8273-43ed-9ef6-c5ccf53e1cf3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2441eb50-783f-4aa7-b725-0b4b03099405\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d05dcecb-11df-4d47-a34c-690c730ea98d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n + \ \"etag\": \"W/\\\"85a0f8cd-8273-43ed-9ef6-c5ccf53e1cf3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"1ae2d94d-32b1-488a-9cf1-b6843da362b8\\\"\",\r\n + \ \"etag\": \"W/\\\"85a0f8cd-8273-43ed-9ef6-c5ccf53e1cf3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:56 GMT + - Wed, 13 May 2020 14:13:21 GMT etag: - - W/"1ae2d94d-32b1-488a-9cf1-b6843da362b8" + - W/"85a0f8cd-8273-43ed-9ef6-c5ccf53e1cf3" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d362f9c3-f7d7-4d79-9e1b-ff6407d2c5f4 + - aa6facb7-f0cc-4bcc-b229-43a396bc6f84 status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A03.0886252Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A27.3517143Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a014ea-8f56-46c3-b803-d0584182452c?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:03 GMT + - Wed, 13 May 2020 14:13:28 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A03.0886252Z'" + - W/"datetime'2020-05-13T14%3A13%3A27.3517143Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' x-powered-by: - ASP.NET status: @@ -530,23 +530,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a014ea-8f56-46c3-b803-d0584182452c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86ebec95-12b8-498c-ad13-721bb99c53ae","name":"86ebec95-12b8-498c-ad13-721bb99c53ae","status":"Succeeded","startTime":"2020-05-13T11:06:03.01239Z","endTime":"2020-05-13T11:06:03.1686155Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a014ea-8f56-46c3-b803-d0584182452c","name":"b4a014ea-8f56-46c3-b803-d0584182452c","status":"Succeeded","startTime":"2020-05-13T14:13:27.3106436Z","endTime":"2020-05-13T14:13:27.4200222Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '574' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:35 GMT + - Wed, 13 May 2020 14:13:58 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A03.1566732Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A27.4177612Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:35 GMT + - Wed, 13 May 2020 14:13:59 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A03.1566732Z'" + - W/"datetime'2020-05-13T14%3A13%3A27.4177612Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A41.3207886Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A04.803329Z''\"","location":"westus2","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/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/537cf9fa-9d75-4fb0-9da4-7007dd391ded?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '541' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:41 GMT + - Wed, 13 May 2020 14:14:05 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A41.3207886Z'" + - W/"datetime'2020-05-13T14%3A14%3A04.803329Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -700,23 +700,23 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/537cf9fa-9d75-4fb0-9da4-7007dd391ded?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c53daf9-5d75-4132-b527-eeeb70797aee","name":"9c53daf9-5d75-4132-b527-eeeb70797aee","status":"Succeeded","startTime":"2020-05-13T11:06:41.256333Z","endTime":"2020-05-13T11:06:41.5864267Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/537cf9fa-9d75-4fb0-9da4-7007dd391ded","name":"537cf9fa-9d75-4fb0-9da4-7007dd391ded","status":"Succeeded","startTime":"2020-05-13T14:14:04.7431377Z","endTime":"2020-05-13T14:14:05.0089652Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '615' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:12 GMT + - Wed, 13 May 2020 14:14:37 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A41.5839753Z''\"","location":"westus2","properties":{"poolId":"ac52c92c-50ab-e9e1-009a-bef1e4cf34fc","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A05.0024702Z''\"","location":"westus2","properties":{"poolId":"ed1e6379-85bf-ee29-33c9-0e18e5cb3a0b","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:12 GMT + - Wed, 13 May 2020 14:14:38 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A41.5839753Z'" + - W/"datetime'2020-05-13T14%3A14%3A05.0024702Z'" expires: - '-1' pragma: @@ -814,19 +814,19 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A07%3A19.8151384Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A14%3A44.6006049Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:20 GMT + - Wed, 13 May 2020 14:14:45 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A19.8151384Z'" + - W/"datetime'2020-05-13T14%3A14%3A44.6006049Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' x-powered-by: - ASP.NET status: @@ -872,239 +872,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:07: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:08: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:08: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:09: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:52 GMT + - Wed, 13 May 2020 14:15:16 GMT expires: - '-1' pragma: @@ -1142,23 +926,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:23 GMT + - Wed, 13 May 2020 14:15:47 GMT expires: - '-1' pragma: @@ -1196,23 +980,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:54 GMT + - Wed, 13 May 2020 14:16:18 GMT expires: - '-1' pragma: @@ -1250,23 +1034,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:24 GMT + - Wed, 13 May 2020 14:16:47 GMT expires: - '-1' pragma: @@ -1304,23 +1088,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:55 GMT + - Wed, 13 May 2020 14:17:19 GMT expires: - '-1' pragma: @@ -1358,23 +1142,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:26 GMT + - Wed, 13 May 2020 14:17:49 GMT expires: - '-1' pragma: @@ -1412,23 +1196,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:56 GMT + - Wed, 13 May 2020 14:18:19 GMT expires: - '-1' pragma: @@ -1466,23 +1250,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:27 GMT + - Wed, 13 May 2020 14:18:49 GMT expires: - '-1' pragma: @@ -1520,23 +1304,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:56 GMT + - Wed, 13 May 2020 14:19:19 GMT expires: - '-1' pragma: @@ -1574,23 +1358,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:27 GMT + - Wed, 13 May 2020 14:19:50 GMT expires: - '-1' pragma: @@ -1628,23 +1412,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:57 GMT + - Wed, 13 May 2020 14:20:21 GMT expires: - '-1' pragma: @@ -1682,23 +1466,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:27 GMT + - Wed, 13 May 2020 14:20:52 GMT expires: - '-1' pragma: @@ -1736,23 +1520,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:58 GMT + - Wed, 13 May 2020 14:21:22 GMT expires: - '-1' pragma: @@ -1790,23 +1574,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:28 GMT + - Wed, 13 May 2020 14:21:53 GMT expires: - '-1' pragma: @@ -1844,23 +1628,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:59 GMT + - Wed, 13 May 2020 14:22:23 GMT expires: - '-1' pragma: @@ -1898,23 +1682,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:29 GMT + - Wed, 13 May 2020 14:22:53 GMT expires: - '-1' pragma: @@ -1952,23 +1736,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:59 GMT + - Wed, 13 May 2020 14:23:23 GMT expires: - '-1' pragma: @@ -2006,23 +1790,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:31 GMT + - Wed, 13 May 2020 14:23:54 GMT expires: - '-1' pragma: @@ -2060,23 +1844,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Creating","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:01 GMT + - Wed, 13 May 2020 14:24:24 GMT expires: - '-1' pragma: @@ -2114,23 +1898,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8cd11956-6cb7-48ee-afce-2714ebe2db0d","name":"8cd11956-6cb7-48ee-afce-2714ebe2db0d","status":"Succeeded","startTime":"2020-05-13T14:14:44.5419173Z","endTime":"2020-05-13T14:24:31.0897871Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '648' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:31 GMT + - Wed, 13 May 2020 14:24:54 GMT expires: - '-1' pragma: @@ -2168,174 +1952,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:20: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Creating","startTime":"2020-05-13T11:07:19.752857Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:20: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4529e42b-ee46-4d96-acf0-e811c758fd2d","name":"4529e42b-ee46-4d96-acf0-e811c758fd2d","status":"Succeeded","startTime":"2020-05-13T11:07:19.752857Z","endTime":"2020-05-13T11:20:41.8971645Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '647' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:21: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A20%3A41.8920558Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b9a754a1-3866-73c7-8754-9930122f8077","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_b1e39e5d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A24%3A31.0844169Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","fileSystemId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}],"provisioningState":"Succeeded","fileSystemId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_de74b183","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context @@ -2346,9 +1968,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:02 GMT + - Wed, 13 May 2020 14:24:54 GMT etag: - - W/"datetime'2020-05-13T11%3A20%3A41.8920558Z'" + - W/"datetime'2020-05-13T14%3A24%3A31.0844169Z'" expires: - '-1' pragma: @@ -2371,7 +1993,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "b9a754a1-3866-73c7-8754-9930122f8077"}}' + body: '{"location": "westus2", "properties": {"fileSystemId": "e950c7ed-b3df-6627-a764-4c7dc9c5546a"}}' headers: Accept: - application/json @@ -2389,19 +2011,19 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/da1a0007-d12e-4db7-9a47-3d8d56be56ec?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -2409,11 +2031,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:13 GMT + - Wed, 13 May 2020 14:25:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/da1a0007-d12e-4db7-9a47-3d8d56be56ec?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2425,7 +2047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1190' x-powered-by: - ASP.NET status: @@ -2446,23 +2068,23 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/da1a0007-d12e-4db7-9a47-3d8d56be56ec?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2bdbaae-0945-41df-8df1-eb6957ea88a8","name":"b2bdbaae-0945-41df-8df1-eb6957ea88a8","status":"Succeeded","startTime":"2020-05-13T11:21:11.2623607Z","endTime":"2020-05-13T11:21:15.4497721Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/da1a0007-d12e-4db7-9a47-3d8d56be56ec","name":"da1a0007-d12e-4db7-9a47-3d8d56be56ec","status":"Succeeded","startTime":"2020-05-13T14:25:02.02096Z","endTime":"2020-05-13T14:25:04.5317821Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '683' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:43 GMT + - Wed, 13 May 2020 14:25:33 GMT expires: - '-1' pragma: @@ -2499,12 +2121,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"10928f11-71d6-3d31-dede-cb6c34896db1","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005","created":"2020-05-13T11:21:13Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"94e92c84-5ad3-34c9-ae66-02fcb41a230c","fileSystemId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","name":"cli-sn-000005","created":"2020-05-13T14:25:02Z"}}' headers: access-control-expose-headers: - Request-Context @@ -2515,7 +2137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:44 GMT + - Wed, 13 May 2020 14:25:33 GMT expires: - '-1' pragma: @@ -2552,14 +2174,14 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"10928f11-71d6-3d31-dede-cb6c34896db1","fileSystemId":"b9a754a1-3866-73c7-8754-9930122f8077","name":"cli-sn-000005","created":"2020-05-13T11:21:13Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"94e92c84-5ad3-34c9-ae66-02fcb41a230c","fileSystemId":"e950c7ed-b3df-6627-a764-4c7dc9c5546a","name":"cli-sn-000005","created":"2020-05-13T14:25:02Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -2570,7 +2192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:58 GMT + - Wed, 13 May 2020 14:25:37 GMT expires: - '-1' pragma: @@ -2609,7 +2231,7 @@ interactions: - -g -a -p -v -s User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -2621,17 +2243,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a8f5d6-3bf0-409f-b2c4-3d1335ef23bb?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:22:00 GMT + - Wed, 13 May 2020 14:25:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a8f5d6-3bf0-409f-b2c4-3d1335ef23bb?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2643,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -2664,12 +2286,12 @@ interactions: - -g -a -p -v -s User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a8f5d6-3bf0-409f-b2c4-3d1335ef23bb?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34cc42da-fbf1-4699-a2c1-3c53963d0cc2","name":"34cc42da-fbf1-4699-a2c1-3c53963d0cc2","status":"Succeeded","startTime":"2020-05-13T11:22:00.6004144Z","endTime":"2020-05-13T11:22:03.5537778Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a8f5d6-3bf0-409f-b2c4-3d1335ef23bb","name":"24a8f5d6-3bf0-409f-b2c4-3d1335ef23bb","status":"Succeeded","startTime":"2020-05-13T14:25:41.2162601Z","endTime":"2020-05-13T14:25:44.2319899Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -2680,7 +2302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:31 GMT + - Wed, 13 May 2020 14:26:12 GMT expires: - '-1' pragma: @@ -2717,7 +2339,7 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -2735,7 +2357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:35 GMT + - Wed, 13 May 2020 14:26:14 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml index deacfed56e7..c1dbb482b84 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"37e32379-87b2-4fc7-8a63-ac178010309a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"570bbcab-fa0f-4c5e-bda5-7b8265ab36bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"014129f5-1092-4340-b712-7e1a2d4fad99\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0ce5fbc-7543-4335-a31c-99f194449ba0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7911f351-15cd-4821-95ff-76e522b14df7?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:45 GMT + - Wed, 13 May 2020 14:16:39 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 985ccfda-5a79-4d2b-ad92-14583aec8fbe + - dfc2d2d2-0b9a-4acc-9fbb-a719d704467e x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1191' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0ce5fbc-7543-4335-a31c-99f194449ba0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7911f351-15cd-4821-95ff-76e522b14df7?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:50 GMT + - Wed, 13 May 2020 14:16:42 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cf995887-854d-460f-bdf2-678cfa486ec0 + - 64d2cfe5-b9d4-4e44-b136-8e278dfdd0f6 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"255cb331-63ea-444d-ab11-311e6330be3c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f09afdcc-3c7e-4c7f-9e5c-f06a793fa107\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"014129f5-1092-4340-b712-7e1a2d4fad99\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:50 GMT + - Wed, 13 May 2020 14:16:43 GMT etag: - - W/"255cb331-63ea-444d-ab11-311e6330be3c" + - W/"f09afdcc-3c7e-4c7f-9e5c-f06a793fa107" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76162790-2ef7-47d8-8795-8a7a924fb928 + - 07ff75b5-aced-4a04-b44e-d68c6a2858be status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"255cb331-63ea-444d-ab11-311e6330be3c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f09afdcc-3c7e-4c7f-9e5c-f06a793fa107\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"014129f5-1092-4340-b712-7e1a2d4fad99\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:51 GMT + - Wed, 13 May 2020 14:16:44 GMT etag: - - W/"255cb331-63ea-444d-ab11-311e6330be3c" + - W/"f09afdcc-3c7e-4c7f-9e5c-f06a793fa107" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0872a56f-65b3-4c04-800d-adcaa3e5985b + - 353132aa-018a-49d1-8d66-07532b3e291e status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"410cf3ac-17de-4f1e-a045-4c92bcd56dd4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"014129f5-1092-4340-b712-7e1a2d4fad99\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n + \ \"etag\": \"W/\\\"410cf3ac-17de-4f1e-a045-4c92bcd56dd4\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"e883ddf6-26fe-4b3a-aab7-06b9dfe28b2f\\\"\",\r\n + \ \"etag\": \"W/\\\"410cf3ac-17de-4f1e-a045-4c92bcd56dd4\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbcffc42-81d5-422c-98d1-67d4db917921?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbd3a402-e9dd-454c-8851-1cbdcff4ce58?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:52 GMT + - Wed, 13 May 2020 14:16:46 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8aeb679b-06a3-46cb-ac1c-c2cd96688178 + - 321b3a50-b2e4-4951-ac91-f9a0988e9fb8 x-ms-ratelimit-remaining-subscription-writes: - '1192' status: @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbcffc42-81d5-422c-98d1-67d4db917921?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbd3a402-e9dd-454c-8851-1cbdcff4ce58?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:56 GMT + - Wed, 13 May 2020 14:16:49 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d2d123f-a044-4f12-9507-a47f55b31fb0 + - b20fc42c-665c-45f5-bdfe-b5ce7736e1bc status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b78ef790-d38e-4619-b96d-a7c4fd9c2947\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"50d9c328-e64c-48c4-abfc-519537c96f4e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"014129f5-1092-4340-b712-7e1a2d4fad99\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n + \ \"etag\": \"W/\\\"b78ef790-d38e-4619-b96d-a7c4fd9c2947\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"69e123c5-7fef-4905-ba65-b6e5fb1283cb\\\"\",\r\n + \ \"etag\": \"W/\\\"b78ef790-d38e-4619-b96d-a7c4fd9c2947\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:57 GMT + - Wed, 13 May 2020 14:16:49 GMT etag: - - W/"69e123c5-7fef-4905-ba65-b6e5fb1283cb" + - W/"b78ef790-d38e-4619-b96d-a7c4fd9c2947" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6e7d6bc-b914-4a13-b100-67b888a2567b + - 678ec504-0792-4ffe-ad5a-d1b94f3bddac status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A12%3A04.6977034Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A58.3076014Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/52997508-6abc-4897-a413-c496bd0a4bcc?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad67c733-d02c-4d39-900d-0cdc00146051?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:04 GMT + - Wed, 13 May 2020 14:16:58 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A04.6977034Z'" + - W/"datetime'2020-05-13T14%3A16%3A58.3076014Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1191' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/52997508-6abc-4897-a413-c496bd0a4bcc?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad67c733-d02c-4d39-900d-0cdc00146051?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/52997508-6abc-4897-a413-c496bd0a4bcc","name":"52997508-6abc-4897-a413-c496bd0a4bcc","status":"Succeeded","startTime":"2020-05-13T11:12:04.2731073Z","endTime":"2020-05-13T11:12:05.4821616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad67c733-d02c-4d39-900d-0cdc00146051","name":"ad67c733-d02c-4d39-900d-0cdc00146051","status":"Succeeded","startTime":"2020-05-13T14:16:57.8943631Z","endTime":"2020-05-13T14:16:59.0828284Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:37 GMT + - Wed, 13 May 2020 14:17:29 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A12%3A05.3803665Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A58.9812512Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:37 GMT + - Wed, 13 May 2020 14:17:30 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A05.3803665Z'" + - W/"datetime'2020-05-13T14%3A16%3A58.9812512Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A12%3A45.5543453Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A37.109158Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"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/0a9d7286-cdcc-43de-85c6-25c80d764c05?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/05d6d3de-eb68-4940-ac49-2c81f6d28cb4?api-version=2019-10-01 cache-control: - no-cache content-length: - - '588' + - '587' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:47 GMT + - Wed, 13 May 2020 14:17:37 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A45.5543453Z'" + - W/"datetime'2020-05-13T14%3A17%3A37.109158Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1186' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0a9d7286-cdcc-43de-85c6-25c80d764c05?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/05d6d3de-eb68-4940-ac49-2c81f6d28cb4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0a9d7286-cdcc-43de-85c6-25c80d764c05","name":"0a9d7286-cdcc-43de-85c6-25c80d764c05","status":"Succeeded","startTime":"2020-05-13T11:12:45.0807792Z","endTime":"2020-05-13T11:12:46.4883136Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/05d6d3de-eb68-4940-ac49-2c81f6d28cb4","name":"05d6d3de-eb68-4940-ac49-2c81f6d28cb4","status":"Succeeded","startTime":"2020-05-13T14:17:36.6666219Z","endTime":"2020-05-13T14:17:38.1198049Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:18 GMT + - Wed, 13 May 2020 14:18:09 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A12%3A46.3761438Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"50f1d37d-2787-e124-3113-58b091e6f57e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A37.9719971Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"ec46e9fe-979b-027c-fad7-3d813a877e6b","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:18 GMT + - Wed, 13 May 2020 14:18:10 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A46.3761438Z'" + - W/"datetime'2020-05-13T14%3A17%3A37.9719971Z'" expires: - '-1' pragma: @@ -815,19 +815,19 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A13%3A28.8493607Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A18%3A18.8516542Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -835,9 +835,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:29 GMT + - Wed, 13 May 2020 14:18:19 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A28.8493607Z'" + - W/"datetime'2020-05-13T14%3A18%3A18.8516542Z'" expires: - '-1' pragma: @@ -851,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -873,12 +873,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -889,7 +889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:00 GMT + - Wed, 13 May 2020 14:18:50 GMT expires: - '-1' pragma: @@ -927,12 +927,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -943,7 +943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:31 GMT + - Wed, 13 May 2020 14:19:21 GMT expires: - '-1' pragma: @@ -981,12 +981,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -997,7 +997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:02 GMT + - Wed, 13 May 2020 14:19:52 GMT expires: - '-1' pragma: @@ -1035,12 +1035,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:32 GMT + - Wed, 13 May 2020 14:20:22 GMT expires: - '-1' pragma: @@ -1089,12 +1089,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1105,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:02 GMT + - Wed, 13 May 2020 14:20:52 GMT expires: - '-1' pragma: @@ -1143,12 +1143,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1159,7 +1159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:33 GMT + - Wed, 13 May 2020 14:21:22 GMT expires: - '-1' pragma: @@ -1197,12 +1197,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1213,7 +1213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:03 GMT + - Wed, 13 May 2020 14:21:52 GMT expires: - '-1' pragma: @@ -1251,12 +1251,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1267,7 +1267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:33 GMT + - Wed, 13 May 2020 14:22:23 GMT expires: - '-1' pragma: @@ -1305,12 +1305,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1321,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:03 GMT + - Wed, 13 May 2020 14:22:53 GMT expires: - '-1' pragma: @@ -1359,12 +1359,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1375,7 +1375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:34 GMT + - Wed, 13 May 2020 14:23:25 GMT expires: - '-1' pragma: @@ -1413,12 +1413,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1429,7 +1429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:04 GMT + - Wed, 13 May 2020 14:23:55 GMT expires: - '-1' pragma: @@ -1467,12 +1467,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1483,7 +1483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:35 GMT + - Wed, 13 May 2020 14:24:25 GMT expires: - '-1' pragma: @@ -1521,12 +1521,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1537,7 +1537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:05 GMT + - Wed, 13 May 2020 14:24:56 GMT expires: - '-1' pragma: @@ -1575,12 +1575,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1591,7 +1591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:36 GMT + - Wed, 13 May 2020 14:25:26 GMT expires: - '-1' pragma: @@ -1629,12 +1629,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1645,7 +1645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:06 GMT + - Wed, 13 May 2020 14:25:57 GMT expires: - '-1' pragma: @@ -1683,12 +1683,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1699,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:37 GMT + - Wed, 13 May 2020 14:26:27 GMT expires: - '-1' pragma: @@ -1737,12 +1737,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1753,7 +1753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:08 GMT + - Wed, 13 May 2020 14:26:58 GMT expires: - '-1' pragma: @@ -1791,12 +1791,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1807,7 +1807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:38 GMT + - Wed, 13 May 2020 14:27:28 GMT expires: - '-1' pragma: @@ -1845,12 +1845,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1861,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:08 GMT + - Wed, 13 May 2020 14:27:59 GMT expires: - '-1' pragma: @@ -1899,12 +1899,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1915,7 +1915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:38 GMT + - Wed, 13 May 2020 14:28:30 GMT expires: - '-1' pragma: @@ -1953,12 +1953,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1969,7 +1969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:09 GMT + - Wed, 13 May 2020 14:29:00 GMT expires: - '-1' pragma: @@ -2007,12 +2007,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2023,7 +2023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:39 GMT + - Wed, 13 May 2020 14:29:30 GMT expires: - '-1' pragma: @@ -2061,12 +2061,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2077,7 +2077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:10 GMT + - Wed, 13 May 2020 14:30:01 GMT expires: - '-1' pragma: @@ -2115,12 +2115,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2131,7 +2131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:40 GMT + - Wed, 13 May 2020 14:30:31 GMT expires: - '-1' pragma: @@ -2169,12 +2169,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Creating","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2185,7 +2185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:11 GMT + - Wed, 13 May 2020 14:31:01 GMT expires: - '-1' pragma: @@ -2223,23 +2223,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5aa790a3-661a-40f0-98ac-c1fa3a9ca969","name":"5aa790a3-661a-40f0-98ac-c1fa3a9ca969","status":"Succeeded","startTime":"2020-05-13T11:13:28.4212307Z","endTime":"2020-05-13T11:26:12.3727997Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:41 GMT + - Wed, 13 May 2020 14:31:32 GMT expires: - '-1' pragma: @@ -2277,25 +2277,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A26%3A12.196846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bfe5afdc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1598' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:42 GMT - etag: - - W/"datetime'2020-05-13T11%3A26%3A12.196846Z'" + - Wed, 13 May 2020 14:32:02 GMT expires: - '-1' pragma: @@ -2325,32 +2323,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A26%3A12.196846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"f63deb30-fdb6-a7f5-3bc2-a8102f8abd5c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bfe5afdc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1610' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:46 GMT + - Wed, 13 May 2020 14:32:33 GMT expires: - '-1' pragma: @@ -2380,38 +2377,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' 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/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '0' + - '642' + content-type: + - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:49 GMT + - Wed, 13 May 2020 14:33:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2420,15 +2412,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-deletes: - - '14997' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2437,19 +2431,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2460,7 +2455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:20 GMT + - Wed, 13 May 2020 14:33:34 GMT expires: - '-1' pragma: @@ -2490,19 +2485,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2513,7 +2509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:51 GMT + - Wed, 13 May 2020 14:34:04 GMT expires: - '-1' pragma: @@ -2543,19 +2539,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2566,7 +2563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:22 GMT + - Wed, 13 May 2020 14:34:34 GMT expires: - '-1' pragma: @@ -2596,19 +2593,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2619,7 +2617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:52 GMT + - Wed, 13 May 2020 14:35:05 GMT expires: - '-1' pragma: @@ -2649,19 +2647,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2672,7 +2671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:22 GMT + - Wed, 13 May 2020 14:35:35 GMT expires: - '-1' pragma: @@ -2702,19 +2701,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2725,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:53 GMT + - Wed, 13 May 2020 14:36:05 GMT expires: - '-1' pragma: @@ -2755,19 +2755,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2778,7 +2779,169 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:23 GMT + - Wed, 13 May 2020 14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Creating","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/14fb9d88-a7b0-490f-ab78-a706eed1714a","name":"14fb9d88-a7b0-490f-ab78-a706eed1714a","status":"Succeeded","startTime":"2020-05-13T14:18:18.3860663Z","endTime":"2020-05-13T14:37:55.7353814Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:38:08 GMT expires: - '-1' pragma: @@ -2800,6 +2963,174 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A37%3A55.5618284Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","fileSystemId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_ca5da4a5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1599' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:38:09 GMT + etag: + - W/"datetime'2020-05-13T14%3A37%3A55.5618284Z'" + 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 + CommandName: + - netappfiles volume list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A37%3A55.5618284Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","fileSystemId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"10fa4220-54c6-e451-06a5-4a6ba25bc3c6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_ca5da4a5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}]}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1611' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:38: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 + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 May 2020 14:38:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-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-deletes: + - '14997' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -2815,12 +3146,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2831,7 +3162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:53 GMT + - Wed, 13 May 2020 14:38:50 GMT expires: - '-1' pragma: @@ -2868,12 +3199,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2884,7 +3215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:23 GMT + - Wed, 13 May 2020 14:39:20 GMT expires: - '-1' pragma: @@ -2921,12 +3252,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2937,7 +3268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:54 GMT + - Wed, 13 May 2020 14:39:50 GMT expires: - '-1' pragma: @@ -2974,12 +3305,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2990,7 +3321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:24 GMT + - Wed, 13 May 2020 14:40:21 GMT expires: - '-1' pragma: @@ -3027,12 +3358,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3043,7 +3374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:55 GMT + - Wed, 13 May 2020 14:40:51 GMT expires: - '-1' pragma: @@ -3080,12 +3411,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3096,7 +3427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:26 GMT + - Wed, 13 May 2020 14:41:21 GMT expires: - '-1' pragma: @@ -3133,12 +3464,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3149,7 +3480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:57 GMT + - Wed, 13 May 2020 14:41:51 GMT expires: - '-1' pragma: @@ -3186,12 +3517,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3202,7 +3533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:34:27 GMT + - Wed, 13 May 2020 14:42:23 GMT expires: - '-1' pragma: @@ -3239,12 +3570,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3255,7 +3586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:34:57 GMT + - Wed, 13 May 2020 14:42:53 GMT expires: - '-1' pragma: @@ -3292,12 +3623,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3308,7 +3639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:28 GMT + - Wed, 13 May 2020 14:43:23 GMT expires: - '-1' pragma: @@ -3345,12 +3676,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Deleting","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Deleting","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3361,7 +3692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:58 GMT + - Wed, 13 May 2020 14:43:54 GMT expires: - '-1' pragma: @@ -3398,12 +3729,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/24efc0bc-94ba-41ef-8931-8cebc46dffd9","name":"24efc0bc-94ba-41ef-8931-8cebc46dffd9","status":"Succeeded","startTime":"2020-05-13T11:26:49.7204165Z","endTime":"2020-05-13T11:36:24.7549052Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","name":"d9599574-f1c4-4fe8-9f25-ef38ee8d58c3","status":"Succeeded","startTime":"2020-05-13T14:38:18.1025722Z","endTime":"2020-05-13T14:44:00.3096011Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3414,7 +3745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:28 GMT + - Wed, 13 May 2020 14:44:25 GMT expires: - '-1' pragma: @@ -3451,7 +3782,7 @@ interactions: - --resource-group -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3469,7 +3800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:31 GMT + - Wed, 13 May 2020 14:44:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml index caa856dfd5c..6a1452be443 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml @@ -18,19 +18,19 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A55.7070143Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A19.9697432Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/e317d849-4d17-435a-910f-7f79515a57c6?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60349eec-8a13-4098-919e-f36c11f10b2e?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:57 GMT + - Wed, 13 May 2020 14:12:21 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A55.7070143Z'" + - W/"datetime'2020-05-13T14%3A12%3A19.9697432Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' x-powered-by: - ASP.NET status: @@ -75,23 +75,23 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e317d849-4d17-435a-910f-7f79515a57c6?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60349eec-8a13-4098-919e-f36c11f10b2e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e317d849-4d17-435a-910f-7f79515a57c6","name":"e317d849-4d17-435a-910f-7f79515a57c6","status":"Succeeded","startTime":"2020-05-13T11:04:55.2082875Z","endTime":"2020-05-13T11:04:56.476208Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60349eec-8a13-4098-919e-f36c11f10b2e","name":"60349eec-8a13-4098-919e-f36c11f10b2e","status":"Succeeded","startTime":"2020-05-13T14:12:19.4659299Z","endTime":"2020-05-13T14:12:20.7472419Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '580' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:27 GMT + - Wed, 13 May 2020 14:12:52 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A56.3776658Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A20.6464005Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:27 GMT + - Wed, 13 May 2020 14:12:52 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A56.3776658Z'" + - W/"datetime'2020-05-13T14%3A12%3A20.6464005Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml index 7c804214166..3fff0b0efd6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml @@ -18,29 +18,29 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A22.7531417Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A41.9771119Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/8cceb0b0-79f6-41dd-b52b-7fcf58553c48?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad65be72-9552-419c-b00c-8d35c86ad973?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:23 GMT + - Wed, 13 May 2020 14:13:43 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A22.7531417Z'" + - W/"datetime'2020-05-13T14%3A13%3A41.9771119Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1191' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8cceb0b0-79f6-41dd-b52b-7fcf58553c48?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad65be72-9552-419c-b00c-8d35c86ad973?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8cceb0b0-79f6-41dd-b52b-7fcf58553c48","name":"8cceb0b0-79f6-41dd-b52b-7fcf58553c48","status":"Succeeded","startTime":"2020-05-13T11:06:22.3382452Z","endTime":"2020-05-13T11:06:23.5734257Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad65be72-9552-419c-b00c-8d35c86ad973","name":"ad65be72-9552-419c-b00c-8d35c86ad973","status":"Succeeded","startTime":"2020-05-13T14:13:41.4666298Z","endTime":"2020-05-13T14:13:42.7657893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:53 GMT + - Wed, 13 May 2020 14:14:13 GMT expires: - '-1' pragma: @@ -128,25 +128,25 @@ interactions: - --resource-group --account-name -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A06%3A23.4658284Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A42.654766Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '458' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:53 GMT + - Wed, 13 May 2020 14:14:13 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A23.4658284Z'" + - W/"datetime'2020-05-13T14%3A13%3A42.654766Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml index a3404fae2eb..b80dba259fc 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"c9b523df-2227-4a10-a77a-bf42af490312\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d0cbe147-7539-4f99-b4c0-8e324ab0cceb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d5902c2e-c549-472f-809d-1308c531d91b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f862949-bf8b-489d-b7b4-a3bbb181bd2c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79061fa0-48c2-4104-b865-54f8aafd0733?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:54 GMT + - Wed, 13 May 2020 14:17:21 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef30cdd0-3f74-465b-9ad1-ee0911b16420 + - 64fd915c-a9ec-47b5-878e-8afaf6ab6738 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2f862949-bf8b-489d-b7b4-a3bbb181bd2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79061fa0-48c2-4104-b865-54f8aafd0733?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:58 GMT + - Wed, 13 May 2020 14:17:24 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60926aa5-3912-409b-b037-60113de4b9bb + - c640674b-96af-4b84-b7fe-ebe451acd29f status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"598666c4-593f-4613-881c-480f2197018f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"65a95b09-3ebc-4106-8336-cbe0e3a22e93\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d5902c2e-c549-472f-809d-1308c531d91b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:58 GMT + - Wed, 13 May 2020 14:17:25 GMT etag: - - W/"598666c4-593f-4613-881c-480f2197018f" + - W/"65a95b09-3ebc-4106-8336-cbe0e3a22e93" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4ed32a3-3647-4c0a-9bd5-b6740e2f082e + - 6fdbbf6b-a35d-4a39-853d-cee0d8af3ce0 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"598666c4-593f-4613-881c-480f2197018f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"65a95b09-3ebc-4106-8336-cbe0e3a22e93\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d5902c2e-c549-472f-809d-1308c531d91b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:59 GMT + - Wed, 13 May 2020 14:17:26 GMT etag: - - W/"598666c4-593f-4613-881c-480f2197018f" + - W/"65a95b09-3ebc-4106-8336-cbe0e3a22e93" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5fd26d3-0c82-4a02-8a48-9dfb444b9611 + - 4c4711ae-7ec8-49b8-acb4-f03010bd8143 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"968ba7b9-2c30-4f95-8b29-aa48f6fd2b18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d5902c2e-c549-472f-809d-1308c531d91b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n + \ \"etag\": \"W/\\\"968ba7b9-2c30-4f95-8b29-aa48f6fd2b18\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"2dfaa476-aca1-4610-a6d5-03338518bb3b\\\"\",\r\n + \ \"etag\": \"W/\\\"968ba7b9-2c30-4f95-8b29-aa48f6fd2b18\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ca5aad12-3442-40b7-b98d-99264ad1ccb0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08f7bd77-12b5-4782-bf6c-69629540df36?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:01 GMT + - Wed, 13 May 2020 14:17:27 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d184f810-540e-46aa-a0ab-97f08be0b675 + - 0813bbae-f014-4cfc-b0cf-14c539764c57 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ca5aad12-3442-40b7-b98d-99264ad1ccb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08f7bd77-12b5-4782-bf6c-69629540df36?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:05 GMT + - Wed, 13 May 2020 14:17:31 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7bd5c7e8-fca0-4903-86a3-a07f3df2d068 + - 4ffd89e0-e03d-449d-bf8a-227a6849e584 status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"081cf805-1e1d-4b74-a112-7c0e1f6e680b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"49642d4a-d37e-477e-94cb-e21ff32cc2c4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d5902c2e-c549-472f-809d-1308c531d91b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n + \ \"etag\": \"W/\\\"081cf805-1e1d-4b74-a112-7c0e1f6e680b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"dfb63292-0e26-4171-9431-465a81abff59\\\"\",\r\n + \ \"etag\": \"W/\\\"081cf805-1e1d-4b74-a112-7c0e1f6e680b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:05 GMT + - Wed, 13 May 2020 14:17:31 GMT etag: - - W/"dfb63292-0e26-4171-9431-465a81abff59" + - W/"081cf805-1e1d-4b74-a112-7c0e1f6e680b" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8694b92-0ef9-4b65-9f11-22043e91de63 + - 56b821d1-8458-486e-8ec2-6165b4d88c57 status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A10%3A15.6590688Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A17%3A37.2703029Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e122a54-6e96-4114-b190-424e94ba77c8?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:16 GMT + - Wed, 13 May 2020 14:17:38 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A15.6590688Z'" + - W/"datetime'2020-05-13T14%3A17%3A37.2703029Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e122a54-6e96-4114-b190-424e94ba77c8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63597c2-7dea-4843-a740-820c7275ff6a","name":"e63597c2-7dea-4843-a740-820c7275ff6a","status":"Succeeded","startTime":"2020-05-13T11:10:15.6036144Z","endTime":"2020-05-13T11:10:15.7286111Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e122a54-6e96-4114-b190-424e94ba77c8","name":"5e122a54-6e96-4114-b190-424e94ba77c8","status":"Succeeded","startTime":"2020-05-13T14:17:37.2124367Z","endTime":"2020-05-13T14:17:37.3374418Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:47 GMT + - Wed, 13 May 2020 14:18:09 GMT expires: - '-1' pragma: @@ -583,25 +583,25 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A10%3A15.7311205Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A17%3A37.334348Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '452' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:47 GMT + - Wed, 13 May 2020 14:18:09 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A15.7311205Z'" + - W/"datetime'2020-05-13T14%3A17%3A37.334348Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A53.7251145Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A18%3A15.6115434Z''\"","location":"westus2","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/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9295ddcf-8f65-4219-a333-2f9bc56df01b?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:54 GMT + - Wed, 13 May 2020 14:18:16 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A53.7251145Z'" + - W/"datetime'2020-05-13T14%3A18%3A15.6115434Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1191' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9295ddcf-8f65-4219-a333-2f9bc56df01b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eadaf66b-2edb-4a61-95c6-1e4855a2b6df","name":"eadaf66b-2edb-4a61-95c6-1e4855a2b6df","status":"Succeeded","startTime":"2020-05-13T11:10:53.6415547Z","endTime":"2020-05-13T11:10:53.9072594Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9295ddcf-8f65-4219-a333-2f9bc56df01b","name":"9295ddcf-8f65-4219-a333-2f9bc56df01b","status":"Succeeded","startTime":"2020-05-13T14:18:15.5621398Z","endTime":"2020-05-13T14:18:18.0492031Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:26 GMT + - Wed, 13 May 2020 14:18:48 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A53.9062437Z''\"","location":"westus2","properties":{"poolId":"3aa5bc50-b554-86b1-d6b8-cf2752476559","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A18%3A18.0462747Z''\"","location":"westus2","properties":{"poolId":"a97804f0-43a1-a714-fb02-d89765355331","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:26 GMT + - Wed, 13 May 2020 14:18:48 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A53.9062437Z'" + - W/"datetime'2020-05-13T14%3A18%3A18.0462747Z'" expires: - '-1' pragma: @@ -814,29 +814,29 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A33.3042357Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A18%3A55.994242Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '904' + - '903' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:33 GMT + - Wed, 13 May 2020 14:18:56 GMT etag: - - W/"datetime'2020-05-13T11%3A11%3A33.3042357Z'" + - W/"datetime'2020-05-13T14%3A18%3A55.994242Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1189' x-powered-by: - ASP.NET status: @@ -872,12 +872,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -888,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:05 GMT + - Wed, 13 May 2020 14:19:28 GMT expires: - '-1' pragma: @@ -926,12 +926,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -942,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:35 GMT + - Wed, 13 May 2020 14:19:58 GMT expires: - '-1' pragma: @@ -980,12 +980,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:05 GMT + - Wed, 13 May 2020 14:20:29 GMT expires: - '-1' pragma: @@ -1034,12 +1034,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:36 GMT + - Wed, 13 May 2020 14:21:00 GMT expires: - '-1' pragma: @@ -1088,12 +1088,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:06 GMT + - Wed, 13 May 2020 14:21:30 GMT expires: - '-1' pragma: @@ -1142,12 +1142,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1158,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:36 GMT + - Wed, 13 May 2020 14:22:00 GMT expires: - '-1' pragma: @@ -1196,12 +1196,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:06 GMT + - Wed, 13 May 2020 14:22:31 GMT expires: - '-1' pragma: @@ -1250,12 +1250,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1266,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:37 GMT + - Wed, 13 May 2020 14:23:01 GMT expires: - '-1' pragma: @@ -1304,12 +1304,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1320,7 +1320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:08 GMT + - Wed, 13 May 2020 14:23:31 GMT expires: - '-1' pragma: @@ -1358,12 +1358,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Creating","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1374,7 +1374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:37 GMT + - Wed, 13 May 2020 14:24:01 GMT expires: - '-1' pragma: @@ -1412,23 +1412,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/874749a8-95a1-4e5c-ad59-8729d835f3a7","name":"874749a8-95a1-4e5c-ad59-8729d835f3a7","status":"Succeeded","startTime":"2020-05-13T11:11:33.2181915Z","endTime":"2020-05-13T11:16:41.8906945Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:08 GMT + - Wed, 13 May 2020 14:24:32 GMT expires: - '-1' pragma: @@ -1466,25 +1466,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A16%3A41.8925446Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}],"provisioningState":"Succeeded","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_478edce2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1547' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:08 GMT - etag: - - W/"datetime'2020-05-13T11%3A16%3A41.8925446Z'" + - Wed, 13 May 2020 14:25:02 GMT expires: - '-1' pragma: @@ -1507,49 +1505,40 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "5867f2fd-b6b9-19a1-8979-62a2b6572cda"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot create + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '662' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:18 GMT + - Wed, 13 May 2020 14:25:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1558,15 +1547,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: - - '1194' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1575,30 +1566,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8","name":"64a46e8d-e8dd-46ec-8928-fc1ae9edc5a8","status":"Succeeded","startTime":"2020-05-13T11:17:16.6857657Z","endTime":"2020-05-13T11:17:19.3108784Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '683' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:49 GMT + - Wed, 13 May 2020 14:26:03 GMT expires: - '-1' pragma: @@ -1628,30 +1620,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:50 GMT + - Wed, 13 May 2020 14:26:33 GMT expires: - '-1' pragma: @@ -1681,32 +1674,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '760' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:52 GMT + - Wed, 13 May 2020 14:27:03 GMT expires: - '-1' pragma: @@ -1736,32 +1728,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -s + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","fileSystemId":"5867f2fd-b6b9-19a1-8979-62a2b6572cda","name":"cli-sn-000006","created":"2020-05-13T11:17:16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:54 GMT + - Wed, 13 May 2020 14:27:35 GMT expires: - '-1' pragma: @@ -1784,9 +1775,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-sn-2000007", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "e8c0af0d-2d80-120f-9100-ad4d28073bd8", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' + body: null headers: Accept: - application/json @@ -1796,38 +1785,28 @@ interactions: - netappfiles volume create Connection: - keep-alive - Content-Length: - - '443' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A18%3A01.4180486Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"snapshotId":"e8c0af0d-2d80-120f-9100-ad4d28073bd8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 cache-control: - no-cache content-length: - - '956' + - '637' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:02 GMT - etag: - - W/"datetime'2020-05-13T11%3A18%3A01.4180486Z'" + - Wed, 13 May 2020 14:28:05 GMT expires: - '-1' pragma: @@ -1838,15 +1817,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: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1860,15 +1841,15 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Creating","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1879,7 +1860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:34 GMT + - Wed, 13 May 2020 14:28:35 GMT expires: - '-1' pragma: @@ -1914,26 +1895,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84cdede4-f8bf-4656-b645-36be3d13f58f","name":"84cdede4-f8bf-4656-b645-36be3d13f58f","status":"Succeeded","startTime":"2020-05-13T14:18:55.9526595Z","endTime":"2020-05-13T14:29:03.8362219Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '648' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:04 GMT + - Wed, 13 May 2020 14:29:05 GMT expires: - '-1' pragma: @@ -1968,26 +1949,142 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A29%3A03.8412207Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","startIp":"10.5.0.7","endIp":"10.5.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.7"}],"provisioningState":"Succeeded","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_a1323363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1547' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:29:05 GMT + etag: + - W/"datetime'2020-05-13T14%3A29%3A03.8412207Z'" + 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: '{"location": "westus2", "properties": {"fileSystemId": "3105a9a6-b036-2f0b-7658-5d4e752fbf36"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + Content-Length: + - '95' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","name":"cli-sn-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b84822c-af6c-49ae-a710-a62250b98d46?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '662' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:34 GMT + - Wed, 13 May 2020 14:29:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b84822c-af6c-49ae-a710-a62250b98d46?api-version=2019-10-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: + - '1192' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b84822c-af6c-49ae-a710-a62250b98d46?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b84822c-af6c-49ae-a710-a62250b98d46","name":"8b84822c-af6c-49ae-a710-a62250b98d46","status":"Succeeded","startTime":"2020-05-13T14:29:13.7084092Z","endTime":"2020-05-13T14:29:15.8415857Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:29:46 GMT expires: - '-1' pragma: @@ -2017,31 +2114,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e23a1e60-d8dc-3fd0-2212-e2c2b8300b98","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","name":"cli-sn-000006","created":"2020-05-13T14:29:13Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '748' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:05 GMT + - Wed, 13 May 2020 14:29:46 GMT expires: - '-1' pragma: @@ -2071,31 +2167,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot list Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e23a1e60-d8dc-3fd0-2212-e2c2b8300b98","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","name":"cli-sn-000006","created":"2020-05-13T14:29:13Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '760' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:35 GMT + - Wed, 13 May 2020 14:29:48 GMT expires: - '-1' pragma: @@ -2125,31 +2222,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot show Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id + - -g -a -p -v -s User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Creating","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e23a1e60-d8dc-3fd0-2212-e2c2b8300b98","fileSystemId":"3105a9a6-b036-2f0b-7658-5d4e752fbf36","name":"cli-sn-000006","created":"2020-05-13T14:29:13Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '748' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:05 GMT + - Wed, 13 May 2020 14:29:50 GMT expires: - '-1' pragma: @@ -2171,6 +2269,70 @@ interactions: status: code: 200 message: OK +- request: + body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-sn-2000007", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "e23a1e60-d8dc-3fd0-2212-e2c2b8300b98", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '443' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --snapshot-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A29%3A57.3602492Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"snapshotId":"e23a1e60-d8dc-3fd0-2212-e2c2b8300b98","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/bc48b623-0127-4227-b43c-c2d5ec43cf1b?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '956' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:29:58 GMT + etag: + - W/"datetime'2020-05-13T14%3A29%3A57.3602492Z'" + 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-writes: + - '1192' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created - request: body: null headers: @@ -2187,23 +2349,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bc48b623-0127-4227-b43c-c2d5ec43cf1b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","name":"3e8f69b5-05a3-4ec0-a1dc-361ea89effbd","status":"Succeeded","startTime":"2020-05-13T11:18:01.3650748Z","endTime":"2020-05-13T11:21:27.3986787Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bc48b623-0127-4227-b43c-c2d5ec43cf1b","name":"bc48b623-0127-4227-b43c-c2d5ec43cf1b","status":"Succeeded","startTime":"2020-05-13T14:29:57.3132065Z","endTime":"2020-05-13T14:30:29.346822Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '647' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:35 GMT + - Wed, 13 May 2020 14:30:29 GMT expires: - '-1' pragma: @@ -2241,12 +2403,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A21%3A27.4053959Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","fileSystemId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}],"provisioningState":"Succeeded","fileSystemId":"4d27a43b-4575-f013-c64d-ca5dd7b1798c","name":"cli-sn-2000007","serviceLevel":"Premium","creationToken":"cli-sn-2000007","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_955fe00183474412a263ec0f52d2aeeb_478edce2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A30%3A29.3529833Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"c03acc17-9208-41e9-ee7a-0b55f12d4cfd","fileSystemId":"c03acc17-9208-41e9-ee7a-0b55f12d4cfd","startIp":"10.5.0.7","endIp":"10.5.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.7"}],"provisioningState":"Succeeded","fileSystemId":"c03acc17-9208-41e9-ee7a-0b55f12d4cfd","name":"cli-sn-2000007","serviceLevel":"Premium","creationToken":"cli-sn-2000007","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_955fe00183474412a263ec0f52d2aeeb_a1323363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netapp_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context @@ -2257,9 +2419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:35 GMT + - Wed, 13 May 2020 14:30:29 GMT etag: - - W/"datetime'2020-05-13T11%3A21%3A27.4053959Z'" + - W/"datetime'2020-05-13T14%3A30%3A29.3529833Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml index 95f8fa3fc9a..afa97bab084 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml @@ -18,7 +18,7 @@ interactions: - -n --subscription -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:18 GMT + - Wed, 13 May 2020 14:26:24 GMT expires: - '-1' pragma: @@ -44,7 +44,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -68,7 +68,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -76,10 +76,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"16ea7a2f-be6e-40e5-8748-033614e60352\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"30acf398-8144-4637-afa8-01af813911e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ad478a9b-7037-4433-9c49-25c3e691b248\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -88,7 +88,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6bce2398-f0dd-4a94-8839-26e3016da9d4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03ca10f8-7cb7-42c6-bc5c-d85e09b40418?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -96,7 +96,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:24 GMT + - Wed, 13 May 2020 14:26:31 GMT expires: - '-1' pragma: @@ -109,9 +109,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec1b12bd-298d-4275-923c-0105aa0edd3a + - 62aff63d-4615-485d-bd4c-f62c4cdb695e x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' status: code: 201 message: Created @@ -130,9 +130,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6bce2398-f0dd-4a94-8839-26e3016da9d4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03ca10f8-7cb7-42c6-bc5c-d85e09b40418?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -144,7 +144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:29 GMT + - Wed, 13 May 2020 14:26:35 GMT expires: - '-1' pragma: @@ -161,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98c00d35-e629-475c-b60f-a5445089bcf4 + - 8efd11f5-aaa8-4212-a5c7-6562ca62f080 status: code: 200 message: OK @@ -180,16 +180,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7278ab61-ea6c-4606-a16f-0edfd41bc99a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9d25922c-25ac-4871-9f75-b96c2b07f505\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ad478a9b-7037-4433-9c49-25c3e691b248\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -202,9 +202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:30 GMT + - Wed, 13 May 2020 14:26:35 GMT etag: - - W/"7278ab61-ea6c-4606-a16f-0edfd41bc99a" + - W/"9d25922c-25ac-4871-9f75-b96c2b07f505" expires: - '-1' pragma: @@ -221,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c419331-7ffd-4493-b7c1-e0625a7e6f0d + - 7bcfcbc4-bc53-4bc0-8714-5bc66d6bca49 status: code: 200 message: OK @@ -240,7 +240,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -248,10 +248,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7278ab61-ea6c-4606-a16f-0edfd41bc99a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9d25922c-25ac-4871-9f75-b96c2b07f505\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ad478a9b-7037-4433-9c49-25c3e691b248\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -264,9 +264,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:31 GMT + - Wed, 13 May 2020 14:26:37 GMT etag: - - W/"7278ab61-ea6c-4606-a16f-0edfd41bc99a" + - W/"9d25922c-25ac-4871-9f75-b96c2b07f505" expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02cd8a78-c281-4522-b6fd-3d69eb052d47 + - b1b474cb-5236-40e3-b580-9f75feece44e status: code: 200 message: OK @@ -312,7 +312,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -320,20 +320,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d2854e40-2f94-454a-b2e7-8c8a8090eb2c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ad478a9b-7037-4433-9c49-25c3e691b248\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n + \ \"etag\": \"W/\\\"d2854e40-2f94-454a-b2e7-8c8a8090eb2c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"15f0c91e-655d-426e-829c-2e12ca17b1a6\\\"\",\r\n + \ \"etag\": \"W/\\\"d2854e40-2f94-454a-b2e7-8c8a8090eb2c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -346,7 +346,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4ed3e56-df85-4d0d-b9cb-64b6263cce26?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3645476c-e6c7-415a-8856-0ef3a5c593ed?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -354,7 +354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:32 GMT + - Wed, 13 May 2020 14:26:38 GMT expires: - '-1' pragma: @@ -371,9 +371,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11c93095-1dd8-4f5c-897e-744603a3f1c5 + - 8845cf09-dd2b-4900-b432-b8bd0363da2d x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' status: code: 200 message: OK @@ -392,9 +392,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4ed3e56-df85-4d0d-b9cb-64b6263cce26?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3645476c-e6c7-415a-8856-0ef3a5c593ed?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:36 GMT + - Wed, 13 May 2020 14:26:41 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a307a71b-f909-402c-a118-edec2f9b902b + - 0ad4c25b-a68e-4391-8d09-67e83e7a7274 status: code: 200 message: OK @@ -442,26 +442,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6bb0b697-b9a3-4748-8259-8240a23ed3f5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5e29cc72-1373-477d-ab01-0a57f00ea0eb\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ad478a9b-7037-4433-9c49-25c3e691b248\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n + \ \"etag\": \"W/\\\"6bb0b697-b9a3-4748-8259-8240a23ed3f5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d94a5820-f363-49e3-b92d-a89821e9c7a2\\\"\",\r\n + \ \"etag\": \"W/\\\"6bb0b697-b9a3-4748-8259-8240a23ed3f5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -480,9 +480,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:36 GMT + - Wed, 13 May 2020 14:26:42 GMT etag: - - W/"d94a5820-f363-49e3-b92d-a89821e9c7a2" + - W/"6bb0b697-b9a3-4748-8259-8240a23ed3f5" expires: - '-1' pragma: @@ -499,7 +499,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54abd4d1-f718-45ba-8389-259cf27d3e06 + - 808ed10c-20b3-4d93-a4f7-7d3cbc8d9654 status: code: 200 message: OK @@ -522,29 +522,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A42.5829547Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A26%3A50.1987302Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/255c2cc1-251d-4795-950f-7cd11186d08a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c4f19-6022-44fa-a838-2cc33df8336b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:43 GMT + - Wed, 13 May 2020 14:26:51 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A42.5829547Z'" + - W/"datetime'2020-05-13T14%3A26%3A50.1987302Z'" expires: - '-1' pragma: @@ -558,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -579,12 +579,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/255c2cc1-251d-4795-950f-7cd11186d08a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c4f19-6022-44fa-a838-2cc33df8336b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/255c2cc1-251d-4795-950f-7cd11186d08a","name":"255c2cc1-251d-4795-950f-7cd11186d08a","status":"Succeeded","startTime":"2020-05-13T11:09:42.1315068Z","endTime":"2020-05-13T11:09:43.3660078Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c4f19-6022-44fa-a838-2cc33df8336b","name":"969c4f19-6022-44fa-a838-2cc33df8336b","status":"Succeeded","startTime":"2020-05-13T14:26:49.7275432Z","endTime":"2020-05-13T14:26:50.9625388Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -595,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:14 GMT + - Wed, 13 May 2020 14:27:22 GMT expires: - '-1' pragma: @@ -632,12 +632,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A43.2586073Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A26%3A50.8623712Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -648,9 +648,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:15 GMT + - Wed, 13 May 2020 14:27:23 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A43.2586073Z'" + - W/"datetime'2020-05-13T14%3A26%3A50.8623712Z'" expires: - '-1' pragma: @@ -692,19 +692,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A25.1751309Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A27%3A33.2504947Z''\"","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/c53211a8-cac1-4a66-8924-2f06632491a6?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb194031-48c6-4bb6-ae94-8cf18537e13c?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -712,9 +712,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:25 GMT + - Wed, 13 May 2020 14:27:34 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A25.1751309Z'" + - W/"datetime'2020-05-13T14%3A27%3A33.2504947Z'" expires: - '-1' pragma: @@ -728,7 +728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' x-powered-by: - ASP.NET status: @@ -749,23 +749,23 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c53211a8-cac1-4a66-8924-2f06632491a6?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb194031-48c6-4bb6-ae94-8cf18537e13c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c53211a8-cac1-4a66-8924-2f06632491a6","name":"c53211a8-cac1-4a66-8924-2f06632491a6","status":"Succeeded","startTime":"2020-05-13T11:10:24.5814272Z","endTime":"2020-05-13T11:10:26.112683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fb194031-48c6-4bb6-ae94-8cf18537e13c","name":"fb194031-48c6-4bb6-ae94-8cf18537e13c","status":"Succeeded","startTime":"2020-05-13T14:27:32.5997561Z","endTime":"2020-05-13T14:27:34.2535435Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:57 GMT + - Wed, 13 May 2020 14:28:05 GMT expires: - '-1' pragma: @@ -802,25 +802,25 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A26.005933Z''\"","location":"westus2stage","properties":{"poolId":"2aaed334-01e1-1a90-49b8-93a106296c27","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A27%3A34.1513703Z''\"","location":"westus2stage","properties":{"poolId":"2f84377b-f475-b8b5-6f82-e528178590dc","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:58 GMT + - Wed, 13 May 2020 14:28:05 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A26.005933Z'" + - W/"datetime'2020-05-13T14%3A27%3A34.1513703Z'" expires: - '-1' pragma: @@ -863,29 +863,29 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A05.669423Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A28%3A16.8457905Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 cache-control: - no-cache content-length: - - '863' + - '864' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:06 GMT + - Wed, 13 May 2020 14:28:17 GMT etag: - - W/"datetime'2020-05-13T11%3A11%3A05.669423Z'" + - W/"datetime'2020-05-13T14%3A28%3A16.8457905Z'" expires: - '-1' pragma: @@ -921,12 +921,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -937,7 +937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:37 GMT + - Wed, 13 May 2020 14:28:49 GMT expires: - '-1' pragma: @@ -975,12 +975,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -991,7 +991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:08 GMT + - Wed, 13 May 2020 14:29:19 GMT expires: - '-1' pragma: @@ -1029,12 +1029,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1045,7 +1045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:38 GMT + - Wed, 13 May 2020 14:29:49 GMT expires: - '-1' pragma: @@ -1083,12 +1083,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1099,7 +1099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:08 GMT + - Wed, 13 May 2020 14:30:20 GMT expires: - '-1' pragma: @@ -1137,12 +1137,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1153,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:39 GMT + - Wed, 13 May 2020 14:30:50 GMT expires: - '-1' pragma: @@ -1191,12 +1191,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1207,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:09 GMT + - Wed, 13 May 2020 14:31:21 GMT expires: - '-1' pragma: @@ -1245,12 +1245,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1261,7 +1261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:40 GMT + - Wed, 13 May 2020 14:31:51 GMT expires: - '-1' pragma: @@ -1299,12 +1299,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Creating","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1315,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:10 GMT + - Wed, 13 May 2020 14:32:22 GMT expires: - '-1' pragma: @@ -1353,23 +1353,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","name":"31ff96ad-d0fe-46ec-9780-0f9de7dbf9b7","status":"Succeeded","startTime":"2020-05-13T11:11:05.2064643Z","endTime":"2020-05-13T11:15:17.3356152Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:41 GMT + - Wed, 13 May 2020 14:32:52 GMT expires: - '-1' pragma: @@ -1407,25 +1407,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A15%3A17.1654668Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","fileSystemId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"6ba10d10-cde1-371d-b2bf-6237fe46c104","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_0c6a3a50","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1507' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:43 GMT - etag: - - W/"datetime'2020-05-13T11%3A15%3A17.1654668Z'" + - Wed, 13 May 2020 14:33:23 GMT expires: - '-1' pragma: @@ -1455,38 +1453,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' 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/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 cache-control: - no-cache content-length: - - '0' + - '642' + content-type: + - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:48 GMT + - Wed, 13 May 2020 14:33:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1495,15 +1488,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-deletes: - - '14997' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1512,19 +1507,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1535,7 +1531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:19 GMT + - Wed, 13 May 2020 14:34:24 GMT expires: - '-1' pragma: @@ -1565,19 +1561,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1588,7 +1585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:49 GMT + - Wed, 13 May 2020 14:34:55 GMT expires: - '-1' pragma: @@ -1618,19 +1615,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1641,7 +1639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:20 GMT + - Wed, 13 May 2020 14:35:25 GMT expires: - '-1' pragma: @@ -1671,19 +1669,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1694,7 +1693,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:50 GMT + - Wed, 13 May 2020 14:35:55 GMT expires: - '-1' pragma: @@ -1724,19 +1723,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1747,7 +1747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:21 GMT + - Wed, 13 May 2020 14:36:26 GMT expires: - '-1' pragma: @@ -1777,19 +1777,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1800,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:52 GMT + - Wed, 13 May 2020 14:36:56 GMT expires: - '-1' pragma: @@ -1830,19 +1831,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1853,7 +1855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:22 GMT + - Wed, 13 May 2020 14:37:26 GMT expires: - '-1' pragma: @@ -1883,19 +1885,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1906,7 +1909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:52 GMT + - Wed, 13 May 2020 14:37:57 GMT expires: - '-1' pragma: @@ -1936,19 +1939,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1959,7 +1963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:23 GMT + - Wed, 13 May 2020 14:38:28 GMT expires: - '-1' pragma: @@ -1989,19 +1993,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2012,7 +2017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:53 GMT + - Wed, 13 May 2020 14:38:58 GMT expires: - '-1' pragma: @@ -2042,19 +2047,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2065,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:23 GMT + - Wed, 13 May 2020 14:39:29 GMT expires: - '-1' pragma: @@ -2095,19 +2101,74 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:39: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Creating","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2118,7 +2179,117 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:55 GMT + - Wed, 13 May 2020 14:40: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b31fd652-6327-49ba-b136-a7c423f7d226","name":"b31fd652-6327-49ba-b136-a7c423f7d226","status":"Succeeded","startTime":"2020-05-13T14:28:16.3489544Z","endTime":"2020-05-13T14:40:54.4637845Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:40: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A40%3A54.2862464Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"65a3b170-d79a-a420-7a03-fb8b508bf71e","fileSystemId":"65a3b170-d79a-a420-7a03-fb8b508bf71e","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"65a3b170-d79a-a420-7a03-fb8b508bf71e","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_a3886a0c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1507' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:41:00 GMT + etag: + - W/"datetime'2020-05-13T14%3A40%3A54.2862464Z'" expires: - '-1' pragma: @@ -2140,6 +2311,63 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 13 May 2020 14:41:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-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-deletes: + - '14996' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -2155,23 +2383,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a","name":"42a4e8e0-8a7d-498f-af50-ef0467c36c1a","status":"Deleting","startTime":"2020-05-13T14:41:06.354862Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:25 GMT + - Wed, 13 May 2020 14:41:37 GMT expires: - '-1' pragma: @@ -2208,23 +2436,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a","name":"42a4e8e0-8a7d-498f-af50-ef0467c36c1a","status":"Deleting","startTime":"2020-05-13T14:41:06.354862Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:55 GMT + - Wed, 13 May 2020 14:42:07 GMT expires: - '-1' pragma: @@ -2261,23 +2489,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Deleting","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a","name":"42a4e8e0-8a7d-498f-af50-ef0467c36c1a","status":"Deleting","startTime":"2020-05-13T14:41:06.354862Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:26 GMT + - Wed, 13 May 2020 14:42:37 GMT expires: - '-1' pragma: @@ -2314,12 +2542,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c96a0bcd-5122-4d31-9081-49e256faddaa","name":"c96a0bcd-5122-4d31-9081-49e256faddaa","status":"Succeeded","startTime":"2020-05-13T11:15:48.4900406Z","endTime":"2020-05-13T11:23:30.524515Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42a4e8e0-8a7d-498f-af50-ef0467c36c1a","name":"42a4e8e0-8a7d-498f-af50-ef0467c36c1a","status":"Succeeded","startTime":"2020-05-13T14:41:06.354862Z","endTime":"2020-05-13T14:43:06.2655852Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2330,7 +2558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:55 GMT + - Wed, 13 May 2020 14:43:08 GMT expires: - '-1' pragma: @@ -2369,7 +2597,7 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -2383,11 +2611,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:24:03 GMT + - Wed, 13 May 2020 14:43:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2395,7 +2623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -2414,9 +2642,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2426,11 +2654,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:24:19 GMT + - Wed, 13 May 2020 14:43:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2455,9 +2683,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2467,11 +2695,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:24:34 GMT + - Wed, 13 May 2020 14:43:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2496,9 +2724,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2508,11 +2736,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:24:50 GMT + - Wed, 13 May 2020 14:44:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2537,9 +2765,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2549,11 +2777,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:25:05 GMT + - Wed, 13 May 2020 14:44:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2578,9 +2806,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2590,11 +2818,11 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:25:21 GMT + - Wed, 13 May 2020 14:44:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2619,9 +2847,9 @@ interactions: - --yes -n User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdQU0lKWDRLS1FJLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEQ1QjVIS1gzSUFZLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2631,7 +2859,7 @@ interactions: content-length: - '0' date: - - Wed, 13 May 2020 11:25:48 GMT + - Wed, 13 May 2020 14:45:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml index c3acf7911c2..3d809e2d022 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"6824ddf6-8842-48a4-9d97-3d686b2f47e0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6122f39e-ba4a-42c4-a049-6d6c175243a6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ab41a314-3e2f-46ba-8ab1-67e756f564a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e636ed53-6a58-4247-b98d-0295299b98d7?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cb82ed59-6c86-4362-bc88-3e6838ac68fd?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:48 GMT + - Wed, 13 May 2020 14:19:29 GMT expires: - '-1' pragma: @@ -60,7 +60,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03a9eeb6-0d3d-4570-8a47-9306e91f591e + - 131f1a83-f6b7-4673-a09f-1578485a2041 x-ms-ratelimit-remaining-subscription-writes: - '1193' status: @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e636ed53-6a58-4247-b98d-0295299b98d7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cb82ed59-6c86-4362-bc88-3e6838ac68fd?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:52 GMT + - Wed, 13 May 2020 14:19:34 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3afc0d2-6a9f-4a9b-8204-ba200752efdf + - 952c6f04-335d-4712-9258-6ba18c5c59ed status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7637e252-d373-4f8b-8735-a53fec032bde\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"71f127d7-1c60-4e50-aa35-ca3e97a90fad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ab41a314-3e2f-46ba-8ab1-67e756f564a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:52 GMT + - Wed, 13 May 2020 14:19:34 GMT etag: - - W/"7637e252-d373-4f8b-8735-a53fec032bde" + - W/"71f127d7-1c60-4e50-aa35-ca3e97a90fad" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b71657c-456e-4838-913b-39919cc28521 + - f1e61d7f-f78e-4ae1-aa11-facbb3d58e0f status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7637e252-d373-4f8b-8735-a53fec032bde\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"71f127d7-1c60-4e50-aa35-ca3e97a90fad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ab41a314-3e2f-46ba-8ab1-67e756f564a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:53 GMT + - Wed, 13 May 2020 14:19:37 GMT etag: - - W/"7637e252-d373-4f8b-8735-a53fec032bde" + - W/"71f127d7-1c60-4e50-aa35-ca3e97a90fad" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e8932a7-6152-435a-b56d-5928edbc9c90 + - 0eae107c-6568-437a-9749-1d2cc0503be7 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a75dec90-c3e8-4506-beca-3a3ca8a305e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ab41a314-3e2f-46ba-8ab1-67e756f564a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n + \ \"etag\": \"W/\\\"a75dec90-c3e8-4506-beca-3a3ca8a305e8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"a85eec93-51c5-4ea0-8995-24a78d255ea7\\\"\",\r\n + \ \"etag\": \"W/\\\"a75dec90-c3e8-4506-beca-3a3ca8a305e8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f18146e7-4fe4-41bd-8644-9d00e933a387?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1f819d04-d6fa-41de-8049-8ff2f0a7704e?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:54 GMT + - Wed, 13 May 2020 14:19:39 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffad4784-8d21-4add-b63c-33e95a518be0 + - d4c7b693-ffce-4cbf-b5a8-64a108396ff7 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1187' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f18146e7-4fe4-41bd-8644-9d00e933a387?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1f819d04-d6fa-41de-8049-8ff2f0a7704e?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:58 GMT + - Wed, 13 May 2020 14:19:43 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ecfe5eb-146f-4c5e-af6c-5a82ffcc9bec + - 88eb34c1-1993-44c5-b884-bb24d67c192d status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"98ff7018-81c0-4ad0-aad4-c24ba7d65efe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4d2d4406-56db-4e83-be91-6121b70b978b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ab41a314-3e2f-46ba-8ab1-67e756f564a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n + \ \"etag\": \"W/\\\"98ff7018-81c0-4ad0-aad4-c24ba7d65efe\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a\\\"\",\r\n + \ \"etag\": \"W/\\\"98ff7018-81c0-4ad0-aad4-c24ba7d65efe\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:59 GMT + - Wed, 13 May 2020 14:19:43 GMT etag: - - W/"c27cdbe5-7ae2-4a17-bc29-b6516ba8da0a" + - W/"98ff7018-81c0-4ad0-aad4-c24ba7d65efe" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bd700386-6da1-41f3-9a22-e27a6d7f6d81 + - 2e9807c7-0699-4c43-b30f-274d0340f61d status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A23%3A06.9561101Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A19%3A51.6386706Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/43ccc5d9-b597-466e-85f5-6e60ade38c6e?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:07 GMT + - Wed, 13 May 2020 14:19:53 GMT etag: - - W/"datetime'2020-05-13T11%3A23%3A06.9561101Z'" + - W/"datetime'2020-05-13T14%3A19%3A51.6386706Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1181' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/43ccc5d9-b597-466e-85f5-6e60ade38c6e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a","name":"7d3ed27d-3e0b-4380-bbd2-38cb7fbeed6a","status":"Succeeded","startTime":"2020-05-13T11:23:06.5211932Z","endTime":"2020-05-13T11:23:07.7402476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/43ccc5d9-b597-466e-85f5-6e60ade38c6e","name":"43ccc5d9-b597-466e-85f5-6e60ade38c6e","status":"Succeeded","startTime":"2020-05-13T14:19:51.1590701Z","endTime":"2020-05-13T14:19:52.5502949Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:40 GMT + - Wed, 13 May 2020 14:20:23 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A23%3A07.6337637Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A19%3A52.4394486Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:40 GMT + - Wed, 13 May 2020 14:20:24 GMT etag: - - W/"datetime'2020-05-13T11%3A23%3A07.6337637Z'" + - W/"datetime'2020-05-13T14%3A19%3A52.4394486Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A23%3A48.9626409Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A20%3A33.886658Z''\"","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/36359bc7-08dd-4cc2-acc1-aa809d8c9d90?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad6ba794-3dac-4da7-9ca7-1512d25e37f9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '547' + - '546' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:49 GMT + - Wed, 13 May 2020 14:20:34 GMT etag: - - W/"datetime'2020-05-13T11%3A23%3A48.9626409Z'" + - W/"datetime'2020-05-13T14%3A20%3A33.886658Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' x-powered-by: - ASP.NET status: @@ -700,23 +700,23 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36359bc7-08dd-4cc2-acc1-aa809d8c9d90?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad6ba794-3dac-4da7-9ca7-1512d25e37f9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/36359bc7-08dd-4cc2-acc1-aa809d8c9d90","name":"36359bc7-08dd-4cc2-acc1-aa809d8c9d90","status":"Succeeded","startTime":"2020-05-13T11:23:48.54273Z","endTime":"2020-05-13T11:23:49.9489587Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ad6ba794-3dac-4da7-9ca7-1512d25e37f9","name":"ad6ba794-3dac-4da7-9ca7-1512d25e37f9","status":"Succeeded","startTime":"2020-05-13T14:20:33.4574195Z","endTime":"2020-05-13T14:20:35.0199852Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:21 GMT + - Wed, 13 May 2020 14:21:05 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A23%3A49.8374846Z''\"","location":"westus2stage","properties":{"poolId":"4cef1dde-8d2c-00b1-8fc8-964966c44ceb","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A20%3A34.9156544Z''\"","location":"westus2stage","properties":{"poolId":"6cbc27fe-7179-eeca-070a-091747be0c5c","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:22 GMT + - Wed, 13 May 2020 14:21:06 GMT etag: - - W/"datetime'2020-05-13T11%3A23%3A49.8374846Z'" + - W/"datetime'2020-05-13T14%3A20%3A34.9156544Z'" expires: - '-1' pragma: @@ -814,29 +814,29 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A24%3A31.348539Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A21%3A15.5640901Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '914' + - '915' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:32 GMT + - Wed, 13 May 2020 14:21:16 GMT etag: - - W/"datetime'2020-05-13T11%3A24%3A31.348539Z'" + - W/"datetime'2020-05-13T14%3A21%3A15.5640901Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' x-powered-by: - ASP.NET status: @@ -872,23 +872,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:03 GMT + - Wed, 13 May 2020 14:21:48 GMT expires: - '-1' pragma: @@ -926,23 +926,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:33 GMT + - Wed, 13 May 2020 14:22:19 GMT expires: - '-1' pragma: @@ -980,23 +980,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:04 GMT + - Wed, 13 May 2020 14:22:48 GMT expires: - '-1' pragma: @@ -1034,23 +1034,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:35 GMT + - Wed, 13 May 2020 14:23:19 GMT expires: - '-1' pragma: @@ -1088,23 +1088,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:05 GMT + - Wed, 13 May 2020 14:23:50 GMT expires: - '-1' pragma: @@ -1142,23 +1142,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:36 GMT + - Wed, 13 May 2020 14:24:20 GMT expires: - '-1' pragma: @@ -1196,23 +1196,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:06 GMT + - Wed, 13 May 2020 14:24:51 GMT expires: - '-1' pragma: @@ -1250,23 +1250,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:36 GMT + - Wed, 13 May 2020 14:25:21 GMT expires: - '-1' pragma: @@ -1304,23 +1304,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Creating","startTime":"2020-05-13T11:24:30.736773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '641' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:09 GMT + - Wed, 13 May 2020 14:25:52 GMT expires: - '-1' pragma: @@ -1358,23 +1358,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8d00316-5fb6-411e-9e65-14545b625fa9","name":"d8d00316-5fb6-411e-9e65-14545b625fa9","status":"Succeeded","startTime":"2020-05-13T11:24:30.736773Z","endTime":"2020-05-13T11:29:09.6462001Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Creating","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '652' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:39 GMT + - Wed, 13 May 2020 14:26:22 GMT expires: - '-1' pragma: @@ -1412,12 +1412,66 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd7e317b-ae7c-4799-81f2-edba831e703f","name":"bd7e317b-ae7c-4799-81f2-edba831e703f","status":"Succeeded","startTime":"2020-05-13T14:21:15.1004963Z","endTime":"2020-05-13T14:26:35.9541355Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:26: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A09.4674433Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A26%3A35.7697288Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1428,9 +1482,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:40 GMT + - Wed, 13 May 2020 14:26:54 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A09.4674433Z'" + - W/"datetime'2020-05-13T14%3A26%3A35.7697288Z'" expires: - '-1' pragma: @@ -1468,14 +1522,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A09.4674433Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A26%3A35.7697288Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1486,9 +1540,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:42 GMT + - Wed, 13 May 2020 14:26:59 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A09.4674433Z'" + - W/"datetime'2020-05-13T14%3A26%3A35.7697288Z'" expires: - '-1' pragma: @@ -1534,14 +1588,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A47.3411951Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A02.0732484Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1552,9 +1606,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:51 GMT + - Wed, 13 May 2020 14:27:06 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A47.3411951Z'" + - W/"datetime'2020-05-13T14%3A27%3A02.0732484Z'" expires: - '-1' pragma: @@ -1572,7 +1626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' x-powered-by: - ASP.NET status: @@ -1594,14 +1648,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A51.3070461Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A06.2162701Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1612,9 +1666,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:53 GMT + - Wed, 13 May 2020 14:27:08 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A51.3070461Z'" + - W/"datetime'2020-05-13T14%3A27%3A06.2162701Z'" expires: - '-1' pragma: @@ -1662,14 +1716,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A56.4900753Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A12.1139888Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1680,9 +1734,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:00 GMT + - Wed, 13 May 2020 14:27:15 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A56.4900753Z'" + - W/"datetime'2020-05-13T14%3A27%3A12.1139888Z'" expires: - '-1' pragma: @@ -1700,7 +1754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' x-powered-by: - ASP.NET status: @@ -1721,14 +1775,14 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A59.5330247Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A16.0287896Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1739,9 +1793,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:00 GMT + - Wed, 13 May 2020 14:27:18 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A59.5330247Z'" + - W/"datetime'2020-05-13T14%3A27%3A16.0287896Z'" expires: - '-1' pragma: @@ -1778,14 +1832,14 @@ interactions: - -g -a -p -v --rule-index User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A29%3A59.5330247Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A16.0287896Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1796,9 +1850,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:03 GMT + - Wed, 13 May 2020 14:27:21 GMT etag: - - W/"datetime'2020-05-13T11%3A29%3A59.5330247Z'" + - W/"datetime'2020-05-13T14%3A27%3A16.0287896Z'" expires: - '-1' pragma: @@ -1828,8 +1882,8 @@ interactions: 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "21c462b7-0df0-b6d4-479c-275b0b3e084a", - "fileSystemId": "21c462b7-0df0-b6d4-479c-275b0b3e084a", "startIp": "10.0.0.4", + "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "0c467dda-8100-69ea-240b-c9cb715bcc00", + "fileSystemId": "0c467dda-8100-69ea-240b-c9cb715bcc00", "startIp": "10.0.0.4", "endIp": "10.0.0.4", "gateway": "", "netmask": "", "subnet": "", "ipAddress": "10.0.0.4"}]}}''' headers: @@ -1849,14 +1903,14 @@ interactions: - -g -a -p -v --rule-index User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A30%3A06.8741494Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"21c462b7-0df0-b6d4-479c-275b0b3e084a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_5de2e29c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A27%3A24.3728843Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0c467dda-8100-69ea-240b-c9cb715bcc00","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"0c467dda-8100-69ea-240b-c9cb715bcc00","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_42eb8405","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1867,9 +1921,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:10 GMT + - Wed, 13 May 2020 14:27:27 GMT etag: - - W/"datetime'2020-05-13T11%3A30%3A06.8741494Z'" + - W/"datetime'2020-05-13T14%3A27%3A24.3728843Z'" expires: - '-1' pragma: @@ -1887,7 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1193' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml index 37b4d140f97..c273769434d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"4f9e831c-5567-4f8b-ae73-e7a3f9a3cbc1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d4cf57ab-a2de-4d58-b59e-b1a18e662bbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"002a7a2a-9b30-4154-9804-a83775d0a03e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4473bd9a-0596-4038-9d23-c770ac250211?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95b69c63-3731-4056-bd2b-124daf6e9692?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:05 GMT + - Wed, 13 May 2020 14:14:27 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d440689-82ac-4ee4-9a58-5de7074ce29b + - d148356b-bef9-4c35-b202-b007dcdb1c8b x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1188' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4473bd9a-0596-4038-9d23-c770ac250211?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95b69c63-3731-4056-bd2b-124daf6e9692?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:10 GMT + - Wed, 13 May 2020 14:14:31 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98070e49-2aea-4505-9204-9d7253e61f2f + - 618f7237-01c8-4f42-8a64-f1b83efab095 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"3ba07527-503a-4a23-aec9-f9bfd534a3c4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8bc97370-ad6f-442c-8daa-590bad4f2210\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"002a7a2a-9b30-4154-9804-a83775d0a03e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:10 GMT + - Wed, 13 May 2020 14:14:31 GMT etag: - - W/"3ba07527-503a-4a23-aec9-f9bfd534a3c4" + - W/"8bc97370-ad6f-442c-8daa-590bad4f2210" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 319649b8-946b-4639-9c16-b87532a08a80 + - 0ab7239b-3a2f-4f87-8ffa-75ec6b69074a status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"3ba07527-503a-4a23-aec9-f9bfd534a3c4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8bc97370-ad6f-442c-8daa-590bad4f2210\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"002a7a2a-9b30-4154-9804-a83775d0a03e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:11 GMT + - Wed, 13 May 2020 14:14:33 GMT etag: - - W/"3ba07527-503a-4a23-aec9-f9bfd534a3c4" + - W/"8bc97370-ad6f-442c-8daa-590bad4f2210" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8841e4d-fe01-4fb1-8c6e-193dbb70c8ab + - 7e15318c-88ed-4f53-8c21-cef5615f4977 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e55f81aa-8c49-4337-a718-fbac309e6cc7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"002a7a2a-9b30-4154-9804-a83775d0a03e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n + \ \"etag\": \"W/\\\"e55f81aa-8c49-4337-a718-fbac309e6cc7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"cdf5164b-f834-43c4-a46f-b1de771b617e\\\"\",\r\n + \ \"etag\": \"W/\\\"e55f81aa-8c49-4337-a718-fbac309e6cc7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f4b011e-9c48-4010-bece-2faee12f18cb?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/842a776f-db9b-4174-b7f7-4787cb488158?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:12 GMT + - Wed, 13 May 2020 14:14:34 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d09cfb6a-0911-4a7b-9e09-48083ec2618a + - cd2409b9-9b1f-4b4e-9c4f-6fd5b9272de6 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f4b011e-9c48-4010-bece-2faee12f18cb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/842a776f-db9b-4174-b7f7-4787cb488158?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:16 GMT + - Wed, 13 May 2020 14:14:38 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7df5212-72b6-4eef-86ad-851f54197dcd + - 9cd44d98-59dc-4103-8481-0f3cab2661ac status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6ae9428e-b161-4c1e-908a-12f7af32c88f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9ec01baf-f8b4-49c3-8dab-cef833a73a22\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"002a7a2a-9b30-4154-9804-a83775d0a03e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n + \ \"etag\": \"W/\\\"6ae9428e-b161-4c1e-908a-12f7af32c88f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"baed626e-2230-4b60-b8de-150ac4eed3fe\\\"\",\r\n + \ \"etag\": \"W/\\\"6ae9428e-b161-4c1e-908a-12f7af32c88f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:16 GMT + - Wed, 13 May 2020 14:14:39 GMT etag: - - W/"baed626e-2230-4b60-b8de-150ac4eed3fe" + - W/"6ae9428e-b161-4c1e-908a-12f7af32c88f" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6192b08d-d94b-4d81-8e4f-33f6b38a3b95 + - 53da8799-103b-4a48-a385-3b4c9b0a808f status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A24.6979115Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A44.9269044Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67533b47-d0af-4d2c-8c39-74e70ce40007?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:25 GMT + - Wed, 13 May 2020 14:14:45 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A24.6979115Z'" + - W/"datetime'2020-05-13T14%3A14%3A44.9269044Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1188' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67533b47-d0af-4d2c-8c39-74e70ce40007?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e3d6515-5a7d-4aa3-95ee-93651d7a00c4","name":"8e3d6515-5a7d-4aa3-95ee-93651d7a00c4","status":"Succeeded","startTime":"2020-05-13T11:07:24.2725112Z","endTime":"2020-05-13T11:07:25.4756262Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67533b47-d0af-4d2c-8c39-74e70ce40007","name":"67533b47-d0af-4d2c-8c39-74e70ce40007","status":"Succeeded","startTime":"2020-05-13T14:14:44.3931588Z","endTime":"2020-05-13T14:14:45.7040548Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:57 GMT + - Wed, 13 May 2020 14:15:17 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A25.3715608Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A45.5915452Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:58 GMT + - Wed, 13 May 2020 14:15:17 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A25.3715608Z'" + - W/"datetime'2020-05-13T14%3A14%3A45.5915452Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A06.2359922Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","size":8796093022208,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A26.2487755Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","size":8796093022208,"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/513c347e-bc3d-4fad-9828-371ed74c739d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba910c9c-48a2-4cba-b91d-246762a477a0?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:07 GMT + - Wed, 13 May 2020 14:15:27 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A06.2359922Z'" + - W/"datetime'2020-05-13T14%3A15%3A26.2487755Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1185' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/513c347e-bc3d-4fad-9828-371ed74c739d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba910c9c-48a2-4cba-b91d-246762a477a0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/513c347e-bc3d-4fad-9828-371ed74c739d","name":"513c347e-bc3d-4fad-9828-371ed74c739d","status":"Succeeded","startTime":"2020-05-13T11:08:05.8179902Z","endTime":"2020-05-13T11:08:07.2155664Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ba910c9c-48a2-4cba-b91d-246762a477a0","name":"ba910c9c-48a2-4cba-b91d-246762a477a0","status":"Succeeded","startTime":"2020-05-13T14:15:25.8344476Z","endTime":"2020-05-13T14:15:27.1782539Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:05 GMT + - Wed, 13 May 2020 14:15:57 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A07.1038284Z''\"","location":"westus2stage","properties":{"poolId":"d8b9c9ed-a315-439e-56f4-12b3a1f6189c","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A27.0635603Z''\"","location":"westus2stage","properties":{"poolId":"aff66b01-9b7c-a6c8-418a-72e028fbfd31","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:06 GMT + - Wed, 13 May 2020 14:15:58 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A07.1038284Z'" + - W/"datetime'2020-05-13T14%3A15%3A27.0635603Z'" expires: - '-1' pragma: @@ -814,29 +814,29 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A13.702088Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A16%3A07.5376136Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 cache-control: - no-cache content-length: - - '915' + - '916' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:14 GMT + - Wed, 13 May 2020 14:16:07 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A13.702088Z'" + - W/"datetime'2020-05-13T14%3A16%3A07.5376136Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -872,12 +872,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -888,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:45 GMT + - Wed, 13 May 2020 14:16:39 GMT expires: - '-1' pragma: @@ -926,12 +926,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -942,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:15 GMT + - Wed, 13 May 2020 14:17:09 GMT expires: - '-1' pragma: @@ -980,12 +980,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:46 GMT + - Wed, 13 May 2020 14:17:39 GMT expires: - '-1' pragma: @@ -1034,12 +1034,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:16 GMT + - Wed, 13 May 2020 14:18:10 GMT expires: - '-1' pragma: @@ -1088,12 +1088,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Creating","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:46 GMT + - Wed, 13 May 2020 14:18:41 GMT expires: - '-1' pragma: @@ -1142,12 +1142,120 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","name":"3f07c6bc-5d3d-440f-aa8e-6c39217f6adf","status":"Succeeded","startTime":"2020-05-13T11:09:13.2954789Z","endTime":"2020-05-13T11:12:10.3039924Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Creating","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:19: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f2275e93-97cd-40c3-a478-58a6c90e84dc","name":"f2275e93-97cd-40c3-a478-58a6c90e84dc","status":"Succeeded","startTime":"2020-05-13T14:16:07.0800666Z","endTime":"2020-05-13T14:19:52.0346673Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1158,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:17 GMT + - Wed, 13 May 2020 14:20:11 GMT expires: - '-1' pragma: @@ -1196,12 +1304,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A10.1229665Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A19%3A51.8568825Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"96237334-a03c-30e6-6fea-04ea125b50d8","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_ad978a87","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,9 +1320,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:18 GMT + - Wed, 13 May 2020 14:20:12 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A10.1229665Z'" + - W/"datetime'2020-05-13T14%3A19%3A51.8568825Z'" expires: - '-1' pragma: @@ -1252,14 +1360,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A10.1229665Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A19%3A51.8568825Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"96237334-a03c-30e6-6fea-04ea125b50d8","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_ad978a87","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1270,9 +1378,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:22 GMT + - Wed, 13 May 2020 14:20:16 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A10.1229665Z'" + - W/"datetime'2020-05-13T14%3A19%3A51.8568825Z'" expires: - '-1' pragma: @@ -1318,14 +1426,14 @@ interactions: --cifs --nfsv3 --nfsv41 User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A12%3A26.0674368Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"d3a4e7f6-5d6c-2b52-a38e-ae2925f072fe","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_aee30867","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A20%3A20.6838458Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"96237334-a03c-30e6-6fea-04ea125b50d8","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"96237334-a03c-30e6-6fea-04ea125b50d8","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_ad978a87","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1336,9 +1444,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:30 GMT + - Wed, 13 May 2020 14:20:24 GMT etag: - - W/"datetime'2020-05-13T11%3A12%3A26.0674368Z'" + - W/"datetime'2020-05-13T14%3A20%3A20.6838458Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml index e8aca2afd9e..745e194c8d3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml @@ -18,19 +18,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6115557Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.0709337Z''\"","location":"westus2","properties":{"name":"cli000002","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/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80671340-ba2c-4b14-b134-bcc68f69301a?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:54 GMT + - Wed, 13 May 2020 14:12:13 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A52.6115557Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.0709337Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80671340-ba2c-4b14-b134-bcc68f69301a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72a66b07-adb9-45a5-9507-7c9b62f3781f","name":"72a66b07-adb9-45a5-9507-7c9b62f3781f","status":"Succeeded","startTime":"2020-05-13T11:04:52.5489639Z","endTime":"2020-05-13T11:04:52.6739832Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80671340-ba2c-4b14-b134-bcc68f69301a","name":"80671340-ba2c-4b14-b134-bcc68f69301a","status":"Succeeded","startTime":"2020-05-13T14:12:13.0294429Z","endTime":"2020-05-13T14:12:13.1388197Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:24 GMT + - Wed, 13 May 2020 14:12:44 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1369802Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:24 GMT + - Wed, 13 May 2020 14:12:44 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1369802Z'" expires: - '-1' pragma: @@ -183,14 +183,14 @@ interactions: - --resource-group -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1369802Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -201,9 +201,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:27 GMT + - Wed, 13 May 2020 14:12:48 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1369802Z'" expires: - '-1' pragma: @@ -240,14 +240,14 @@ interactions: - --ids User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A52.6725991Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1369802Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -258,9 +258,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:31 GMT + - Wed, 13 May 2020 14:12:51 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A52.6725991Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1369802Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml index bcd03a6be08..0e75123dc6b 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml @@ -18,19 +18,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A33.6745725Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A53.2048936Z''\"","location":"westus2stage","properties":{"name":"cli000002","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/c8059da9-50dd-4e71-8a98-09a8529c0a89?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e277d2c7-8348-4242-a165-d545008a2be3?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:34 GMT + - Wed, 13 May 2020 14:14:54 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A33.6745725Z'" + - W/"datetime'2020-05-13T14%3A14%3A53.2048936Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1193' x-powered-by: - ASP.NET status: @@ -75,23 +75,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c8059da9-50dd-4e71-8a98-09a8529c0a89?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e277d2c7-8348-4242-a165-d545008a2be3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c8059da9-50dd-4e71-8a98-09a8529c0a89","name":"c8059da9-50dd-4e71-8a98-09a8529c0a89","status":"Succeeded","startTime":"2020-05-13T11:07:33.2107856Z","endTime":"2020-05-13T11:07:34.4453841Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e277d2c7-8348-4242-a165-d545008a2be3","name":"e277d2c7-8348-4242-a165-d545008a2be3","status":"Succeeded","startTime":"2020-05-13T14:14:52.7731621Z","endTime":"2020-05-13T14:14:54.145805Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '581' + - '580' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:05 GMT + - Wed, 13 May 2020 14:15:25 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A34.3482223Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A54.0346922Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:06 GMT + - Wed, 13 May 2020 14:15:25 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A34.3482223Z'" + - W/"datetime'2020-05-13T14%3A14%3A54.0346922Z'" expires: - '-1' pragma: @@ -188,19 +188,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A15.9623754Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A33.0503376Z''\"","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/32706263-5caa-427e-93ab-a772f275fbde?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8dea5a6-6177-4886-ba4b-3eeee7819161?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -208,9 +208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:17 GMT + - Wed, 13 May 2020 14:15:33 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A15.9623754Z'" + - W/"datetime'2020-05-13T14%3A15%3A33.0503376Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' x-powered-by: - ASP.NET status: @@ -245,23 +245,23 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32706263-5caa-427e-93ab-a772f275fbde?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8dea5a6-6177-4886-ba4b-3eeee7819161?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32706263-5caa-427e-93ab-a772f275fbde","name":"32706263-5caa-427e-93ab-a772f275fbde","status":"Succeeded","startTime":"2020-05-13T11:08:15.4720414Z","endTime":"2020-05-13T11:08:17.2219371Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8dea5a6-6177-4886-ba4b-3eeee7819161","name":"d8dea5a6-6177-4886-ba4b-3eeee7819161","status":"Succeeded","startTime":"2020-05-13T14:15:32.641481Z","endTime":"2020-05-13T14:15:34.0245439Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '620' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:06 GMT + - Wed, 13 May 2020 14:16:04 GMT expires: - '-1' pragma: @@ -298,25 +298,25 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A33.917174Z''\"","location":"westus2stage","properties":{"poolId":"0ea3d4ce-5e76-8ca1-7079-04669613a67b","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '655' + - '654' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:06 GMT + - Wed, 13 May 2020 14:16:05 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" + - W/"datetime'2020-05-13T14%3A15%3A33.917174Z'" expires: - '-1' pragma: @@ -353,27 +353,27 @@ interactions: - --resource-group -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A33.917174Z''\"","location":"westus2stage","properties":{"poolId":"0ea3d4ce-5e76-8ca1-7079-04669613a67b","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '655' + - '654' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:08 GMT + - Wed, 13 May 2020 14:16:07 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" + - W/"datetime'2020-05-13T14%3A15%3A33.917174Z'" expires: - '-1' pragma: @@ -410,27 +410,27 @@ interactions: - --ids User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A17.1184912Z''\"","location":"westus2stage","properties":{"poolId":"999bd2e2-fd8b-731d-102f-2a5534a63b16","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A33.917174Z''\"","location":"westus2stage","properties":{"poolId":"0ea3d4ce-5e76-8ca1-7079-04669613a67b","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '655' + - '654' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:11 GMT + - Wed, 13 May 2020 14:16:09 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A17.1184912Z'" + - W/"datetime'2020-05-13T14%3A15%3A33.917174Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml index 147bc52c69a..4868f9c31e8 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"5de44a7e-b33f-4e40-bddc-41f2454adc81\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ddbe705c-4604-466b-b79e-ccea6795a12d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"591edc6e-a685-44c5-8d1c-ac9c2e1183fb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0347abbd-d01b-4205-b8ef-9796e0867178?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98a6eddd-cced-4de6-a220-865df2461071?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:22 GMT + - Wed, 13 May 2020 14:15:50 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 491d64c6-ac4b-456a-b33c-2475d071f0fd + - a179f95e-3496-41f1-97a5-98b149038aa2 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0347abbd-d01b-4205-b8ef-9796e0867178?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98a6eddd-cced-4de6-a220-865df2461071?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:26 GMT + - Wed, 13 May 2020 14:15:54 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c35959d9-bddc-48fa-9f01-92cc7e0cd46b + - 7a793db5-fea7-42b5-8ad9-11ae304e9b3a status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"347bbe8a-0132-4b79-80c6-91fb6bd54603\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"591edc6e-a685-44c5-8d1c-ac9c2e1183fb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:27 GMT + - Wed, 13 May 2020 14:15:54 GMT etag: - - W/"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6" + - W/"347bbe8a-0132-4b79-80c6-91fb6bd54603" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e1164b6b-77a6-413d-bc2b-4001fe06ef08 + - 8b925efc-5bea-47d5-8cde-e78c9f7121c4 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"347bbe8a-0132-4b79-80c6-91fb6bd54603\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"591edc6e-a685-44c5-8d1c-ac9c2e1183fb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:29 GMT + - Wed, 13 May 2020 14:15:56 GMT etag: - - W/"06e22a01-6c80-4a4a-a2b4-a4f488eec6b6" + - W/"347bbe8a-0132-4b79-80c6-91fb6bd54603" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 588625c5-4ff6-4cb7-8096-2245f2110db5 + - e1299d92-6923-487c-93bf-b85e4be4cff1 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2bd0e437-a0ee-4964-bbee-2ef57938e8a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"591edc6e-a685-44c5-8d1c-ac9c2e1183fb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n + \ \"etag\": \"W/\\\"2bd0e437-a0ee-4964-bbee-2ef57938e8a7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"cef5f847-6596-4797-aeee-e1174ba37a59\\\"\",\r\n + \ \"etag\": \"W/\\\"2bd0e437-a0ee-4964-bbee-2ef57938e8a7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d5726c41-177d-42f8-8135-10e64d1353db?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c4edad23-d903-40ac-88a2-076988c7930c?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:30 GMT + - Wed, 13 May 2020 14:15:58 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 821a3224-c137-45ca-9c39-57bce597e117 + - 933b6ae7-babf-4b40-b082-a2565f74fd36 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1184' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d5726c41-177d-42f8-8135-10e64d1353db?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c4edad23-d903-40ac-88a2-076988c7930c?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:33 GMT + - Wed, 13 May 2020 14:16:01 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 420361a0-d038-413a-957f-e78bbf86ee49 + - 5f5dcf11-bf73-40eb-8882-2856a1aace69 status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8bb1c8f9-8f61-4719-a962-519b4fff39b3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5eee8d27-c435-448a-a540-0a1d67dc8d87\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"591edc6e-a685-44c5-8d1c-ac9c2e1183fb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n + \ \"etag\": \"W/\\\"8bb1c8f9-8f61-4719-a962-519b4fff39b3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"e59ea649-db33-4753-b2da-a54742694bc7\\\"\",\r\n + \ \"etag\": \"W/\\\"8bb1c8f9-8f61-4719-a962-519b4fff39b3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:34 GMT + - Wed, 13 May 2020 14:16:02 GMT etag: - - W/"e59ea649-db33-4753-b2da-a54742694bc7" + - W/"8bb1c8f9-8f61-4719-a962-519b4fff39b3" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1723c212-2b9d-4924-94c5-12da9866ee20 + - 033a00ac-0b0d-4096-ac34-b03c66f0f133 status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A08%3A40.1211917Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A08.1499759Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d19097b-b610-4486-9efb-5396544d71f9?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:41 GMT + - Wed, 13 May 2020 14:16:08 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A40.1211917Z'" + - W/"datetime'2020-05-13T14%3A16%3A08.1499759Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1189' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d19097b-b610-4486-9efb-5396544d71f9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44","name":"cea2a9c7-6be1-47f9-8f3c-7ef8de55dc44","status":"Succeeded","startTime":"2020-05-13T11:08:40.0547543Z","endTime":"2020-05-13T11:08:40.1797402Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d19097b-b610-4486-9efb-5396544d71f9","name":"2d19097b-b610-4486-9efb-5396544d71f9","status":"Succeeded","startTime":"2020-05-13T14:16:08.0920309Z","endTime":"2020-05-13T14:16:08.2171077Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:12 GMT + - Wed, 13 May 2020 14:16:40 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A08%3A40.1792326Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A08.2230278Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:12 GMT + - Wed, 13 May 2020 14:16:40 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A40.1792326Z'" + - W/"datetime'2020-05-13T14%3A16%3A08.2230278Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A17.7919552Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A16%3A46.5922891Z''\"","location":"westus2","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/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/028d76c6-076f-4e25-9313-d65d7416c4e0?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:18 GMT + - Wed, 13 May 2020 14:16:47 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A17.7919552Z'" + - W/"datetime'2020-05-13T14%3A16%3A46.5922891Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/028d76c6-076f-4e25-9313-d65d7416c4e0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cde91088-fd4d-45d7-8cec-ba7216c4d739","name":"cde91088-fd4d-45d7-8cec-ba7216c4d739","status":"Succeeded","startTime":"2020-05-13T11:09:17.7349706Z","endTime":"2020-05-13T11:09:18.0631634Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/028d76c6-076f-4e25-9313-d65d7416c4e0","name":"028d76c6-076f-4e25-9313-d65d7416c4e0","status":"Succeeded","startTime":"2020-05-13T14:16:46.5454137Z","endTime":"2020-05-13T14:16:46.8111164Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:49 GMT + - Wed, 13 May 2020 14:17:18 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A18.0581441Z''\"","location":"westus2","properties":{"poolId":"2948e88f-2164-81e3-5d3a-c9253dc5b78e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A16%3A46.8114449Z''\"","location":"westus2","properties":{"poolId":"c1eae389-57da-0815-ac86-ef1cd21adcc5","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:50 GMT + - Wed, 13 May 2020 14:17:19 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A18.0581441Z'" + - W/"datetime'2020-05-13T14%3A16%3A46.8114449Z'" expires: - '-1' pragma: @@ -814,19 +814,19 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A56.0901655Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A17%3A26.1934315Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:57 GMT + - Wed, 13 May 2020 14:17:27 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A56.0901655Z'" + - W/"datetime'2020-05-13T14%3A17%3A26.1934315Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' x-powered-by: - ASP.NET status: @@ -872,23 +872,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:28 GMT + - Wed, 13 May 2020 14:17:58 GMT expires: - '-1' pragma: @@ -926,23 +926,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:58 GMT + - Wed, 13 May 2020 14:18:28 GMT expires: - '-1' pragma: @@ -980,23 +980,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:29 GMT + - Wed, 13 May 2020 14:18:59 GMT expires: - '-1' pragma: @@ -1034,23 +1034,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:59 GMT + - Wed, 13 May 2020 14:19:29 GMT expires: - '-1' pragma: @@ -1088,23 +1088,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:30 GMT + - Wed, 13 May 2020 14:20:00 GMT expires: - '-1' pragma: @@ -1142,23 +1142,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Creating","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Creating","startTime":"2020-05-13T14:17:26.139281Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '636' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:00 GMT + - Wed, 13 May 2020 14:20:30 GMT expires: - '-1' pragma: @@ -1196,23 +1196,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/689ad19f-aa20-483e-bf0e-11af308614c4","name":"689ad19f-aa20-483e-bf0e-11af308614c4","status":"Succeeded","startTime":"2020-05-13T11:09:56.0398339Z","endTime":"2020-05-13T11:13:20.5608882Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ed89de1-04a9-454f-80b8-9f5c5d07540d","name":"0ed89de1-04a9-454f-80b8-9f5c5d07540d","status":"Succeeded","startTime":"2020-05-13T14:17:26.139281Z","endTime":"2020-05-13T14:20:53.5065162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '647' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:30 GMT + - Wed, 13 May 2020 14:21:00 GMT expires: - '-1' pragma: @@ -1250,12 +1250,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A13%3A20.5670542Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}],"provisioningState":"Succeeded","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_71264ff4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A20%3A53.5104128Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}],"provisioningState":"Succeeded","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_deb49324","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context @@ -1266,9 +1266,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:30 GMT + - Wed, 13 May 2020 14:21:01 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A20.5670542Z'" + - W/"datetime'2020-05-13T14%3A20%3A53.5104128Z'" expires: - '-1' pragma: @@ -1291,7 +1291,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "7f09bd3f-4a71-7795-9486-4004dc850bd5"}}' + body: '{"location": "westus2", "properties": {"fileSystemId": "8eb3b8c4-8e62-948c-7e1b-8ef38e562229"}}' headers: Accept: - application/json @@ -1309,19 +1309,19 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921d4442-c111-4548-8a6b-2ce3affb5700?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -1329,11 +1329,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:39 GMT + - Wed, 13 May 2020 14:21:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921d4442-c111-4548-8a6b-2ce3affb5700?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1345,7 +1345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -1366,12 +1366,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921d4442-c111-4548-8a6b-2ce3affb5700?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c4a8d49-62d9-466a-9328-6fa185755efb","name":"3c4a8d49-62d9-466a-9328-6fa185755efb","status":"Succeeded","startTime":"2020-05-13T11:13:38.9606903Z","endTime":"2020-05-13T11:13:41.4447636Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/921d4442-c111-4548-8a6b-2ce3affb5700","name":"921d4442-c111-4548-8a6b-2ce3affb5700","status":"Succeeded","startTime":"2020-05-13T14:21:08.8618048Z","endTime":"2020-05-13T14:21:10.8995039Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -1382,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:11 GMT + - Wed, 13 May 2020 14:21:41 GMT expires: - '-1' pragma: @@ -1419,12 +1419,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"9319220d-003c-32ff-0dfa-af5d1748b684","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","name":"cli-sn-000005","created":"2020-05-13T14:21:09Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1435,7 +1435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:11 GMT + - Wed, 13 May 2020 14:21:42 GMT expires: - '-1' pragma: @@ -1472,14 +1472,14 @@ interactions: - -g -a -p -v -s User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"9319220d-003c-32ff-0dfa-af5d1748b684","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","name":"cli-sn-000005","created":"2020-05-13T14:21:09Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1490,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:13 GMT + - Wed, 13 May 2020 14:21:44 GMT expires: - '-1' pragma: @@ -1527,14 +1527,14 @@ interactions: - --ids User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"56d5729b-7e88-f76e-bf37-69d40ba65382","fileSystemId":"7f09bd3f-4a71-7795-9486-4004dc850bd5","name":"cli-sn-000005","created":"2020-05-13T11:13:39Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"9319220d-003c-32ff-0dfa-af5d1748b684","fileSystemId":"8eb3b8c4-8e62-948c-7e1b-8ef38e562229","name":"cli-sn-000005","created":"2020-05-13T14:21:09Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1545,7 +1545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:15 GMT + - Wed, 13 May 2020 14:21:46 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml index 55a362df5ee..ae3bd5208be 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"5c19fd45-a895-4ad2-85d3-98ea80b25fc8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"486405ba-7ab5-44c3-93cf-fe66fa312a6f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6d86005d-1dd6-46e1-9f77-65b5104329b9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ff98b3b-09e7-4e9e-ae74-e0b9b21a9ba2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cbc5dec8-a0ec-47e5-8cd0-40be058d31d4?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:42 GMT + - Wed, 13 May 2020 14:20:36 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53e11552-917c-471c-9879-2f83f340e706 + - fc4f4743-1a33-4b22-bce0-4079ca64f3dc x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ff98b3b-09e7-4e9e-ae74-e0b9b21a9ba2?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cbc5dec8-a0ec-47e5-8cd0-40be058d31d4?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:46 GMT + - Wed, 13 May 2020 14:20:41 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9b15b5ad-eb53-42d6-a8ee-dbdb5225fb91 + - e912e83d-45ca-4d0a-8bfb-67bf09753e74 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"28abcf23-fa17-4a39-80d6-b5b3d123bd14\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"335e13b4-c55e-4df9-b70a-e0f7a249fde5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6d86005d-1dd6-46e1-9f77-65b5104329b9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:46 GMT + - Wed, 13 May 2020 14:20:42 GMT etag: - - W/"28abcf23-fa17-4a39-80d6-b5b3d123bd14" + - W/"335e13b4-c55e-4df9-b70a-e0f7a249fde5" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 205a389c-58be-40c7-9082-b48c6b7a9972 + - d3256db8-e97d-4a38-aabc-4195305cc745 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"28abcf23-fa17-4a39-80d6-b5b3d123bd14\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"335e13b4-c55e-4df9-b70a-e0f7a249fde5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6d86005d-1dd6-46e1-9f77-65b5104329b9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:48 GMT + - Wed, 13 May 2020 14:20:42 GMT etag: - - W/"28abcf23-fa17-4a39-80d6-b5b3d123bd14" + - W/"335e13b4-c55e-4df9-b70a-e0f7a249fde5" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a4a6b69-963c-4118-9a0a-7c6bfc34a705 + - d4361fe0-a357-4b5f-b43a-eda16e3e89fa status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f3a67d1b-a7c5-4566-ac14-4b4d311699da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6d86005d-1dd6-46e1-9f77-65b5104329b9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n + \ \"etag\": \"W/\\\"f3a67d1b-a7c5-4566-ac14-4b4d311699da\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"f4eb49f9-d512-4696-98aa-10be32bae68b\\\"\",\r\n + \ \"etag\": \"W/\\\"f3a67d1b-a7c5-4566-ac14-4b4d311699da\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e4e87d8-c761-4b5c-9cef-50a072b298b9?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/470bfab7-e8ff-43fb-95ff-5c07d87516cd?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:49 GMT + - Wed, 13 May 2020 14:20:44 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 561c1973-411d-4bd2-a3c3-193d0c269b7c + - af75c121-a1b3-488b-812d-89b62ae741f2 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e4e87d8-c761-4b5c-9cef-50a072b298b9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/470bfab7-e8ff-43fb-95ff-5c07d87516cd?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:53 GMT + - Wed, 13 May 2020 14:20:48 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2adae82-621e-41ad-ae85-1d79b11cde2b + - e000e1b5-4bd9-4b92-b1ef-ab4e51244972 status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d6c94f96-c7bd-4d93-8abc-1d23de9109a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c53bef1-67a6-4c5c-9356-b4992c86d48c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"6d86005d-1dd6-46e1-9f77-65b5104329b9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n + \ \"etag\": \"W/\\\"d6c94f96-c7bd-4d93-8abc-1d23de9109a2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"49bc0106-fb77-4c22-9d42-0d0d601788de\\\"\",\r\n + \ \"etag\": \"W/\\\"d6c94f96-c7bd-4d93-8abc-1d23de9109a2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:54 GMT + - Wed, 13 May 2020 14:20:48 GMT etag: - - W/"49bc0106-fb77-4c22-9d42-0d0d601788de" + - W/"d6c94f96-c7bd-4d93-8abc-1d23de9109a2" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f35bb3ae-693b-4240-895a-04660aab2a72 + - 92da8094-8b56-4239-a578-15661781cfc1 status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A13%3A01.7280439Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A20%3A57.0751512Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/03989390-17c0-4f0e-80d9-b00edf14c999?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45e900e6-da05-4851-851b-d47ef70cd9a2?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:03 GMT + - Wed, 13 May 2020 14:20:58 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A01.7280439Z'" + - W/"datetime'2020-05-13T14%3A20%3A57.0751512Z'" expires: - '-1' pragma: @@ -530,23 +530,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/03989390-17c0-4f0e-80d9-b00edf14c999?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45e900e6-da05-4851-851b-d47ef70cd9a2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/03989390-17c0-4f0e-80d9-b00edf14c999","name":"03989390-17c0-4f0e-80d9-b00edf14c999","status":"Succeeded","startTime":"2020-05-13T11:13:01.2397201Z","endTime":"2020-05-13T11:13:02.492181Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/45e900e6-da05-4851-851b-d47ef70cd9a2","name":"45e900e6-da05-4851-851b-d47ef70cd9a2","status":"Succeeded","startTime":"2020-05-13T14:20:56.5553308Z","endTime":"2020-05-13T14:20:57.8523182Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '580' + - '581' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:34 GMT + - Wed, 13 May 2020 14:21:29 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A13%3A02.3906876Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A20%3A57.7438003Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:35 GMT + - Wed, 13 May 2020 14:21:29 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A02.3906876Z'" + - W/"datetime'2020-05-13T14%3A20%3A57.7438003Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A13%3A44.3904404Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A21%3A39.0328571Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"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/290fbaeb-05df-4215-a8c7-ff9643dc2fbb?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d4fbabbe-56fa-4bce-8980-ae3db6ffc543?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:45 GMT + - Wed, 13 May 2020 14:21:39 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A44.3904404Z'" + - W/"datetime'2020-05-13T14%3A21%3A39.0328571Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/290fbaeb-05df-4215-a8c7-ff9643dc2fbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d4fbabbe-56fa-4bce-8980-ae3db6ffc543?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/290fbaeb-05df-4215-a8c7-ff9643dc2fbb","name":"290fbaeb-05df-4215-a8c7-ff9643dc2fbb","status":"Succeeded","startTime":"2020-05-13T11:13:43.7258638Z","endTime":"2020-05-13T11:13:45.4289893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d4fbabbe-56fa-4bce-8980-ae3db6ffc543","name":"d4fbabbe-56fa-4bce-8980-ae3db6ffc543","status":"Succeeded","startTime":"2020-05-13T14:21:38.5071152Z","endTime":"2020-05-13T14:21:40.0539987Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:17 GMT + - Wed, 13 May 2020 14:22:11 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A13%3A45.2883123Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"poolId":"c8f5cd9b-6d69-5bde-1677-52c867e3773f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A21%3A39.9427403Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"poolId":"e2ef0580-8483-a561-29e1-4c9c27729f24","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:17 GMT + - Wed, 13 May 2020 14:22:11 GMT etag: - - W/"datetime'2020-05-13T11%3A13%3A45.2883123Z'" + - W/"datetime'2020-05-13T14%3A21%3A39.9427403Z'" expires: - '-1' pragma: @@ -817,19 +817,19 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A14%3A28.6063469Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A22%3A21.4490088Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -837,9 +837,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:29 GMT + - Wed, 13 May 2020 14:22:22 GMT etag: - - W/"datetime'2020-05-13T11%3A14%3A28.6063469Z'" + - W/"datetime'2020-05-13T14%3A22%3A21.4490088Z'" expires: - '-1' pragma: @@ -853,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1193' x-powered-by: - ASP.NET status: @@ -875,12 +875,606 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:22: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:23: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:23: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:24: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:24: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:25: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:25: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:26: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:26: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:27: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:27: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -891,7 +1485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:00 GMT + - Wed, 13 May 2020 14:28:29 GMT expires: - '-1' pragma: @@ -929,12 +1523,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -945,7 +1539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:31 GMT + - Wed, 13 May 2020 14:28:59 GMT expires: - '-1' pragma: @@ -983,12 +1577,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -999,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:01 GMT + - Wed, 13 May 2020 14:29:29 GMT expires: - '-1' pragma: @@ -1037,12 +1631,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1053,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:31 GMT + - Wed, 13 May 2020 14:30:00 GMT expires: - '-1' pragma: @@ -1091,12 +1685,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1107,7 +1701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:03 GMT + - Wed, 13 May 2020 14:30:30 GMT expires: - '-1' pragma: @@ -1145,12 +1739,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1161,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:32 GMT + - Wed, 13 May 2020 14:31:01 GMT expires: - '-1' pragma: @@ -1199,12 +1793,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1215,7 +1809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:03 GMT + - Wed, 13 May 2020 14:31:32 GMT expires: - '-1' pragma: @@ -1253,12 +1847,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1269,7 +1863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:33 GMT + - Wed, 13 May 2020 14:32:02 GMT expires: - '-1' pragma: @@ -1307,12 +1901,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1323,7 +1917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:03 GMT + - Wed, 13 May 2020 14:32:33 GMT expires: - '-1' pragma: @@ -1361,12 +1955,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1377,7 +1971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:34 GMT + - Wed, 13 May 2020 14:33:03 GMT expires: - '-1' pragma: @@ -1415,12 +2009,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1431,7 +2025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:04 GMT + - Wed, 13 May 2020 14:33:34 GMT expires: - '-1' pragma: @@ -1469,12 +2063,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1485,7 +2079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:35 GMT + - Wed, 13 May 2020 14:34:04 GMT expires: - '-1' pragma: @@ -1523,12 +2117,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1539,7 +2133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:05 GMT + - Wed, 13 May 2020 14:34:35 GMT expires: - '-1' pragma: @@ -1577,12 +2171,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1593,7 +2187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:36 GMT + - Wed, 13 May 2020 14:35:05 GMT expires: - '-1' pragma: @@ -1631,12 +2225,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1647,7 +2241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:07 GMT + - Wed, 13 May 2020 14:35:35 GMT expires: - '-1' pragma: @@ -1685,12 +2279,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1701,7 +2295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:37 GMT + - Wed, 13 May 2020 14:36:06 GMT expires: - '-1' pragma: @@ -1739,12 +2333,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1755,7 +2349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:08 GMT + - Wed, 13 May 2020 14:36:36 GMT expires: - '-1' pragma: @@ -1793,12 +2387,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1809,7 +2403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:38 GMT + - Wed, 13 May 2020 14:37:06 GMT expires: - '-1' pragma: @@ -1847,12 +2441,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1863,7 +2457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:08 GMT + - Wed, 13 May 2020 14:37:37 GMT expires: - '-1' pragma: @@ -1901,12 +2495,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1917,7 +2511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:39 GMT + - Wed, 13 May 2020 14:38:08 GMT expires: - '-1' pragma: @@ -1955,12 +2549,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1971,7 +2565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:09 GMT + - Wed, 13 May 2020 14:38:38 GMT expires: - '-1' pragma: @@ -2009,12 +2603,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2025,7 +2619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:40 GMT + - Wed, 13 May 2020 14:39:09 GMT expires: - '-1' pragma: @@ -2063,12 +2657,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2079,7 +2673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:10 GMT + - Wed, 13 May 2020 14:39:39 GMT expires: - '-1' pragma: @@ -2117,12 +2711,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2133,7 +2727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:40 GMT + - Wed, 13 May 2020 14:40:10 GMT expires: - '-1' pragma: @@ -2171,12 +2765,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2187,7 +2781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:10 GMT + - Wed, 13 May 2020 14:40:40 GMT expires: - '-1' pragma: @@ -2225,12 +2819,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2241,7 +2835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:41 GMT + - Wed, 13 May 2020 14:41:10 GMT expires: - '-1' pragma: @@ -2279,12 +2873,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2295,7 +2889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:11 GMT + - Wed, 13 May 2020 14:41:40 GMT expires: - '-1' pragma: @@ -2333,12 +2927,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2349,7 +2943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:43 GMT + - Wed, 13 May 2020 14:42:11 GMT expires: - '-1' pragma: @@ -2387,12 +2981,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2403,7 +2997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:13 GMT + - Wed, 13 May 2020 14:42:42 GMT expires: - '-1' pragma: @@ -2441,12 +3035,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2457,7 +3051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:43 GMT + - Wed, 13 May 2020 14:43:13 GMT expires: - '-1' pragma: @@ -2495,12 +3089,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2511,7 +3105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:14 GMT + - Wed, 13 May 2020 14:43:43 GMT expires: - '-1' pragma: @@ -2549,12 +3143,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2565,7 +3159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:44 GMT + - Wed, 13 May 2020 14:44:13 GMT expires: - '-1' pragma: @@ -2603,12 +3197,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2619,7 +3213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:14 GMT + - Wed, 13 May 2020 14:44:44 GMT expires: - '-1' pragma: @@ -2657,12 +3251,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2673,7 +3267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:44 GMT + - Wed, 13 May 2020 14:45:14 GMT expires: - '-1' pragma: @@ -2711,12 +3305,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2727,7 +3321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:15 GMT + - Wed, 13 May 2020 14:45:44 GMT expires: - '-1' pragma: @@ -2765,12 +3359,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2781,7 +3375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:45 GMT + - Wed, 13 May 2020 14:46:16 GMT expires: - '-1' pragma: @@ -2819,12 +3413,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2835,7 +3429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:15 GMT + - Wed, 13 May 2020 14:46:46 GMT expires: - '-1' pragma: @@ -2873,12 +3467,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2889,7 +3483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:46 GMT + - Wed, 13 May 2020 14:47:16 GMT expires: - '-1' pragma: @@ -2927,12 +3521,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2943,7 +3537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:34:16 GMT + - Wed, 13 May 2020 14:47:48 GMT expires: - '-1' pragma: @@ -2981,12 +3575,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Creating","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Creating","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2997,7 +3591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:34:48 GMT + - Wed, 13 May 2020 14:48:18 GMT expires: - '-1' pragma: @@ -3035,12 +3629,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d299850f-39b2-49e6-82b3-0044b4ad5e81","name":"d299850f-39b2-49e6-82b3-0044b4ad5e81","status":"Succeeded","startTime":"2020-05-13T11:14:28.2539614Z","endTime":"2020-05-13T11:35:12.9299403Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa6a2c9f-3f74-497b-94ec-f1298f91758f","name":"aa6a2c9f-3f74-497b-94ec-f1298f91758f","status":"Succeeded","startTime":"2020-05-13T14:22:21.0649512Z","endTime":"2020-05-13T14:48:27.3847311Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3051,7 +3645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:18 GMT + - Wed, 13 May 2020 14:48:48 GMT expires: - '-1' pragma: @@ -3089,12 +3683,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A48%3A27.2103181Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"976e4744-b184-ed65-0cf2-fb6b94d43889","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_abf9ff0a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -3105,9 +3699,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:19 GMT + - Wed, 13 May 2020 14:48:49 GMT etag: - - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" + - W/"datetime'2020-05-13T14%3A48%3A27.2103181Z'" expires: - '-1' pragma: @@ -3144,14 +3738,14 @@ interactions: - --resource-group -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A48%3A27.2103181Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"976e4744-b184-ed65-0cf2-fb6b94d43889","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_abf9ff0a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -3162,9 +3756,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:21 GMT + - Wed, 13 May 2020 14:48:54 GMT etag: - - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" + - W/"datetime'2020-05-13T14%3A48%3A27.2103181Z'" expires: - '-1' pragma: @@ -3201,14 +3795,14 @@ interactions: - --ids User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A35%3A12.7559711Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"25ad8c3c-9dbc-1665-0f17-1878e9fcbe57","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_94e8b2f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A48%3A27.2103181Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"976e4744-b184-ed65-0cf2-fb6b94d43889","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"976e4744-b184-ed65-0cf2-fb6b94d43889","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_fb0467dd8e8011e9a7f006ddec9cd511_abf9ff0a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -3219,9 +3813,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:23 GMT + - Wed, 13 May 2020 14:48:56 GMT etag: - - W/"datetime'2020-05-13T11%3A35%3A12.7559711Z'" + - W/"datetime'2020-05-13T14%3A48%3A27.2103181Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml index f78f08bd55e..b5753accfd1 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml @@ -18,19 +18,19 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7163413Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.2850851Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","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/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/878c4c49-5ad8-46cc-b956-800c66379612?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -38,9 +38,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:55 GMT + - Wed, 13 May 2020 14:12:13 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.7163413Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.2850851Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/878c4c49-5ad8-46cc-b956-800c66379612?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98c149e2-cc06-4c84-8a09-f541e18511e3","name":"98c149e2-cc06-4c84-8a09-f541e18511e3","status":"Succeeded","startTime":"2020-05-13T11:04:53.6583476Z","endTime":"2020-05-13T11:04:53.7833352Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/878c4c49-5ad8-46cc-b956-800c66379612","name":"878c4c49-5ad8-46cc-b956-800c66379612","status":"Succeeded","startTime":"2020-05-13T14:12:13.2255828Z","endTime":"2020-05-13T14:12:13.3506128Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:45 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7793866Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.3491307Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:26 GMT + - Wed, 13 May 2020 14:12:45 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.7793866Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.3491307Z'" expires: - '-1' pragma: @@ -187,19 +187,19 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.1719529Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A53.2664938Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","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/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5833699b-10d5-4b7f-adcc-f149ed839bd4?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:31 GMT + - Wed, 13 May 2020 14:12:54 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A31.1719529Z'" + - W/"datetime'2020-05-13T14%3A12%3A53.2664938Z'" expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -244,23 +244,23 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5833699b-10d5-4b7f-adcc-f149ed839bd4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f7db1-8a50-4c94-beaa-20a6919ad3ba","name":"c01f7db1-8a50-4c94-beaa-20a6919ad3ba","status":"Succeeded","startTime":"2020-05-13T11:05:31.1110367Z","endTime":"2020-05-13T11:05:31.2360773Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5833699b-10d5-4b7f-adcc-f149ed839bd4","name":"5833699b-10d5-4b7f-adcc-f149ed839bd4","status":"Succeeded","startTime":"2020-05-13T14:12:53.220003Z","endTime":"2020-05-13T14:12:53.3606205Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:01 GMT + - Wed, 13 May 2020 14:13:24 GMT expires: - '-1' pragma: @@ -297,12 +297,12 @@ interactions: - -g -a -l --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.2319956Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A53.3605607Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -313,9 +313,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:03 GMT + - Wed, 13 May 2020 14:13:25 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A31.2319956Z'" + - W/"datetime'2020-05-13T14%3A12%3A53.3605607Z'" expires: - '-1' pragma: @@ -352,14 +352,14 @@ interactions: - -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.7793866Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A31.2319956Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A53.3605607Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.3491307Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -370,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:03 GMT + - Wed, 13 May 2020 14:13:27 GMT expires: - '-1' pragma: @@ -409,7 +409,7 @@ interactions: - -g -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -421,17 +421,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5d9c06-25af-4e1e-8745-1d0a81a11b31?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:06:06 GMT + - Wed, 13 May 2020 14:13:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5d9c06-25af-4e1e-8745-1d0a81a11b31?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' x-powered-by: - ASP.NET status: @@ -464,23 +464,23 @@ interactions: - -g -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5d9c06-25af-4e1e-8745-1d0a81a11b31?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0750667a-98f3-442f-86aa-2e61090e5bf0","name":"0750667a-98f3-442f-86aa-2e61090e5bf0","status":"Succeeded","startTime":"2020-05-13T11:06:06.90314Z","endTime":"2020-05-13T11:06:07.0437618Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5d9c06-25af-4e1e-8745-1d0a81a11b31","name":"ec5d9c06-25af-4e1e-8745-1d0a81a11b31","status":"Succeeded","startTime":"2020-05-13T14:13:30.0755211Z","endTime":"2020-05-13T14:13:30.2161439Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '574' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:37 GMT + - Wed, 13 May 2020 14:14:00 GMT expires: - '-1' pragma: @@ -519,7 +519,7 @@ interactions: - -g -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -531,17 +531,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b585cdcd-5651-4862-a14e-7bc7367148c7?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:06:41 GMT + - Wed, 13 May 2020 14:14:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b585cdcd-5651-4862-a14e-7bc7367148c7?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -574,12 +574,12 @@ interactions: - -g -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b585cdcd-5651-4862-a14e-7bc7367148c7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/280491a2-ff59-4d25-a85a-e9f0c5d87791","name":"280491a2-ff59-4d25-a85a-e9f0c5d87791","status":"Succeeded","startTime":"2020-05-13T11:06:41.9082146Z","endTime":"2020-05-13T11:06:42.0332251Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b585cdcd-5651-4862-a14e-7bc7367148c7","name":"b585cdcd-5651-4862-a14e-7bc7367148c7","status":"Succeeded","startTime":"2020-05-13T14:14:05.0410864Z","endTime":"2020-05-13T14:14:05.1660845Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -590,7 +590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:11 GMT + - Wed, 13 May 2020 14:14:36 GMT expires: - '-1' pragma: @@ -627,7 +627,7 @@ interactions: - --resource-group User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -643,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:13 GMT + - Wed, 13 May 2020 14:14:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml index 1e5e292094d..dc163f4df09 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"9ffcd99f-ad3b-49b2-8c1a-b88839c64005\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8ccb5054-783e-43ea-8937-4b1775835abd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"152d98af-5e13-43e4-a214-f22a0bac1e71\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8aedcec4-0743-4c03-abcf-8cfa0eaf49e9?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49dc36ed-ef00-45c3-9a78-44f753a8e62e?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:55 GMT + - Wed, 13 May 2020 14:12:15 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd92fcd9-4a73-4837-9455-e6d553aa171d + - ed1fe1af-f8ea-4c7e-b18d-76fcf88b8081 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8aedcec4-0743-4c03-abcf-8cfa0eaf49e9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49dc36ed-ef00-45c3-9a78-44f753a8e62e?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:58 GMT + - Wed, 13 May 2020 14:12:19 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b02a948a-474e-4a9f-a560-39e668a77bc3 + - ca7da2cd-c604-4307-b15a-3c53f6cf5383 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"5519ee6a-a479-46ea-a966-794a3c041ce8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7172a9e9-36cd-4a22-853a-83d32cd24c81\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"152d98af-5e13-43e4-a214-f22a0bac1e71\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:58 GMT + - Wed, 13 May 2020 14:12:19 GMT etag: - - W/"5519ee6a-a479-46ea-a966-794a3c041ce8" + - W/"7172a9e9-36cd-4a22-853a-83d32cd24c81" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2534f0ce-0d2d-4f5d-8a22-7f5de5218eb6 + - 16d08aa3-9769-4d55-a978-281c2b6112ab status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"5519ee6a-a479-46ea-a966-794a3c041ce8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7172a9e9-36cd-4a22-853a-83d32cd24c81\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"152d98af-5e13-43e4-a214-f22a0bac1e71\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:59 GMT + - Wed, 13 May 2020 14:12:20 GMT etag: - - W/"5519ee6a-a479-46ea-a966-794a3c041ce8" + - W/"7172a9e9-36cd-4a22-853a-83d32cd24c81" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d48aaad-6922-4aec-8dd8-acc43c2d0ee8 + - e459ca58-7cfd-4f59-850a-968d4473361d status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"312291d1-56eb-407b-a3be-c51441dc575f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"152d98af-5e13-43e4-a214-f22a0bac1e71\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n + \ \"etag\": \"W/\\\"312291d1-56eb-407b-a3be-c51441dc575f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n - \ \"etag\": \"W/\\\"a3f426ff-104f-4a7e-9c7d-b59b356c15b4\\\"\",\r\n + \ \"etag\": \"W/\\\"312291d1-56eb-407b-a3be-c51441dc575f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06cbb47a-79fb-4b40-a5f6-01a0bca93bf7?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e36c11e9-f68d-447a-b197-f924b005f130?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:01 GMT + - Wed, 13 May 2020 14:12:22 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3e85686-8f16-44c3-8034-a25c473c4c62 + - 359cb39a-0676-4346-b213-4c021289bcac x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06cbb47a-79fb-4b40-a5f6-01a0bca93bf7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e36c11e9-f68d-447a-b197-f924b005f130?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:05 GMT + - Wed, 13 May 2020 14:12:26 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 114d6aa1-254f-430e-a283-bea52cc94a74 + - f58686b9-eb41-4449-9d36-7f9fd300fc22 status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b858bc18-506d-46be-baa5-6d28ff3bb8a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15bd8bbe-5000-4200-bb05-36e7d9386a9b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"152d98af-5e13-43e4-a214-f22a0bac1e71\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n + \ \"etag\": \"W/\\\"b858bc18-506d-46be-baa5-6d28ff3bb8a7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n - \ \"etag\": \"W/\\\"9ca14f49-3e40-4f78-9152-086753c64295\\\"\",\r\n + \ \"etag\": \"W/\\\"b858bc18-506d-46be-baa5-6d28ff3bb8a7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:06 GMT + - Wed, 13 May 2020 14:12:26 GMT etag: - - W/"9ca14f49-3e40-4f78-9152-086753c64295" + - W/"b858bc18-506d-46be-baa5-6d28ff3bb8a7" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 966b405f-ef8a-40a3-9884-bf4767c22a19 + - 0d958029-537d-491c-a8f5-5592f311b6e2 status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A13.5162961Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A35.708013Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","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/ddf53648-613f-42af-af14-7050afd5b3cf?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1eab0940-be09-49f1-8692-8ae91e4926f8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '430' + - '429' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:14 GMT + - Wed, 13 May 2020 14:12:37 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A13.5162961Z'" + - W/"datetime'2020-05-13T14%3A12%3A35.708013Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' x-powered-by: - ASP.NET status: @@ -530,23 +530,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ddf53648-613f-42af-af14-7050afd5b3cf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1eab0940-be09-49f1-8692-8ae91e4926f8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ddf53648-613f-42af-af14-7050afd5b3cf","name":"ddf53648-613f-42af-af14-7050afd5b3cf","status":"Succeeded","startTime":"2020-05-13T11:05:13.0919219Z","endTime":"2020-05-13T11:05:14.324398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1eab0940-be09-49f1-8692-8ae91e4926f8","name":"1eab0940-be09-49f1-8692-8ae91e4926f8","status":"Succeeded","startTime":"2020-05-13T14:12:35.2298953Z","endTime":"2020-05-13T14:12:36.5268706Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:45 GMT + - Wed, 13 May 2020 14:13:08 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A14.1909515Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A36.3946786Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:46 GMT + - Wed, 13 May 2020 14:13:08 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A14.1909515Z'" + - W/"datetime'2020-05-13T14%3A12%3A36.3946786Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A54.7090811Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A13%3A17.9769546Z''\"","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/80635655-5fcb-4fdf-8036-e593d8df6b78?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fbd9f6bd-4b28-4c18-ba94-7aad5327f950?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:55 GMT + - Wed, 13 May 2020 14:13:18 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A54.7090811Z'" + - W/"datetime'2020-05-13T14%3A13%3A17.9769546Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80635655-5fcb-4fdf-8036-e593d8df6b78?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fbd9f6bd-4b28-4c18-ba94-7aad5327f950?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80635655-5fcb-4fdf-8036-e593d8df6b78","name":"80635655-5fcb-4fdf-8036-e593d8df6b78","status":"Succeeded","startTime":"2020-05-13T11:05:54.2696805Z","endTime":"2020-05-13T11:05:55.7576087Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fbd9f6bd-4b28-4c18-ba94-7aad5327f950","name":"fbd9f6bd-4b28-4c18-ba94-7aad5327f950","status":"Succeeded","startTime":"2020-05-13T14:13:17.4446642Z","endTime":"2020-05-13T14:13:19.1626291Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:26 GMT + - Wed, 13 May 2020 14:13:49 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A05%3A55.6519913Z''\"","location":"westus2stage","properties":{"poolId":"82fb1e2d-de38-04da-cc23-d10da8095f9f","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A13%3A18.9779195Z''\"","location":"westus2stage","properties":{"poolId":"1664ec13-da1a-3175-e559-8fa4b17e642e","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:27 GMT + - Wed, 13 May 2020 14:13:50 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A55.6519913Z'" + - W/"datetime'2020-05-13T14%3A13%3A18.9779195Z'" expires: - '-1' pragma: @@ -814,19 +814,19 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A06%3A35.7937249Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A13%3A57.2598572Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","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/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:37 GMT + - Wed, 13 May 2020 14:13:58 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A35.7937249Z'" + - W/"datetime'2020-05-13T14%3A13%3A57.2598572Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' x-powered-by: - ASP.NET status: @@ -872,23 +872,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Creating","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:07 GMT + - Wed, 13 May 2020 14:14:30 GMT expires: - '-1' pragma: @@ -926,23 +926,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Creating","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:37 GMT + - Wed, 13 May 2020 14:15:00 GMT expires: - '-1' pragma: @@ -980,23 +980,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Creating","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:09 GMT + - Wed, 13 May 2020 14:15:30 GMT expires: - '-1' pragma: @@ -1034,23 +1034,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Creating","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:39 GMT + - Wed, 13 May 2020 14:16:01 GMT expires: - '-1' pragma: @@ -1088,23 +1088,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Creating","startTime":"2020-05-13T11:06:35.367777Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Creating","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '618' + - '619' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:09 GMT + - Wed, 13 May 2020 14:16:32 GMT expires: - '-1' pragma: @@ -1142,23 +1142,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6215d9fa-12a9-4ac1-8768-36a6d90fa913","name":"6215d9fa-12a9-4ac1-8768-36a6d90fa913","status":"Succeeded","startTime":"2020-05-13T11:06:35.367777Z","endTime":"2020-05-13T11:09:22.5368088Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1b288331-e648-4946-8e85-18064d251ac0","name":"1b288331-e648-4946-8e85-18064d251ac0","status":"Succeeded","startTime":"2020-05-13T14:13:56.5767838Z","endTime":"2020-05-13T14:17:02.3990105Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '629' + - '630' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:39 GMT + - Wed, 13 May 2020 14:17:02 GMT expires: - '-1' pragma: @@ -1196,12 +1196,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A09%3A22.3674499Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","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_fb0467dd8e8011e9a7f006ddec9cd511_ef3850e5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A17%3A02.2293869Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e024b581-1a50-20af-2ed6-c1ef530c794f","fileSystemId":"e024b581-1a50-20af-2ed6-c1ef530c794f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"e024b581-1a50-20af-2ed6-c1ef530c794f","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","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_fb0467dd8e8011e9a7f006ddec9cd511_c3cb3b9f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:39 GMT + - Wed, 13 May 2020 14:17:03 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A22.3674499Z'" + - W/"datetime'2020-05-13T14%3A17%3A02.2293869Z'" expires: - '-1' pragma: @@ -1251,14 +1251,14 @@ interactions: - --resource-group -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","fileSystemId":"68592957-5dd5-3ca2-f9d1-b8d0a95d7f81","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/e024b581-1a50-20af-2ed6-c1ef530c794f","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/e024b581-1a50-20af-2ed6-c1ef530c794f","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"e024b581-1a50-20af-2ed6-c1ef530c794f","fileSystemId":"e024b581-1a50-20af-2ed6-c1ef530c794f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1269,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:43 GMT + - Wed, 13 May 2020 14:17:07 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml index 57e6a0f8bc3..030c0137213 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml @@ -18,29 +18,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A45.7534405Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A09.3626422Z''\"","location":"westus2stage","properties":{"name":"cli000002","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/902a75d6-3c2c-46a2-a0d5-de32f3b43d62?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8311a97-8172-4dfb-8f2f-2daf058ae8d9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:47 GMT + - Wed, 13 May 2020 14:13:10 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A45.7534405Z'" + - W/"datetime'2020-05-13T14%3A13%3A09.3626422Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1191' x-powered-by: - ASP.NET status: @@ -75,12 +75,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/902a75d6-3c2c-46a2-a0d5-de32f3b43d62?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8311a97-8172-4dfb-8f2f-2daf058ae8d9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/902a75d6-3c2c-46a2-a0d5-de32f3b43d62","name":"902a75d6-3c2c-46a2-a0d5-de32f3b43d62","status":"Succeeded","startTime":"2020-05-13T11:05:45.3287208Z","endTime":"2020-05-13T11:05:46.544159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f8311a97-8172-4dfb-8f2f-2daf058ae8d9","name":"f8311a97-8172-4dfb-8f2f-2daf058ae8d9","status":"Succeeded","startTime":"2020-05-13T14:13:08.7758752Z","endTime":"2020-05-13T14:13:10.275954Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:17 GMT + - Wed, 13 May 2020 14:13:41 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A46.4340968Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A10.1634144Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:18 GMT + - Wed, 13 May 2020 14:13:41 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A46.4340968Z'" + - W/"datetime'2020-05-13T14%3A13%3A10.1634144Z'" expires: - '-1' pragma: @@ -188,29 +188,29 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.11846Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A13%3A51.4612638Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/2a98fe98-dd66-4d49-bba1-68c52cf927f2?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8d67a743-db77-4d49-9d06-553a85a8b092?api-version=2019-10-01 cache-control: - no-cache content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:25 GMT + - Wed, 13 May 2020 14:13:52 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A24.11846Z'" + - W/"datetime'2020-05-13T14%3A13%3A51.4612638Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1185' x-powered-by: - ASP.NET status: @@ -245,12 +245,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a98fe98-dd66-4d49-bba1-68c52cf927f2?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8d67a743-db77-4d49-9d06-553a85a8b092?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a98fe98-dd66-4d49-bba1-68c52cf927f2","name":"2a98fe98-dd66-4d49-bba1-68c52cf927f2","status":"Succeeded","startTime":"2020-05-13T11:06:23.7139817Z","endTime":"2020-05-13T11:06:25.0893488Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8d67a743-db77-4d49-9d06-553a85a8b092","name":"8d67a743-db77-4d49-9d06-553a85a8b092","status":"Succeeded","startTime":"2020-05-13T14:13:50.9655866Z","endTime":"2020-05-13T14:13:52.5124826Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:56 GMT + - Wed, 13 May 2020 14:14:23 GMT expires: - '-1' pragma: @@ -298,12 +298,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.9812907Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"c79e228c-07f7-499c-fcf0-b9ba8d8b6c50","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A13%3A52.3621325Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"19602fca-dbb3-2356-2e5e-ca9b6496bf19","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:57 GMT + - Wed, 13 May 2020 14:14:24 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A24.9812907Z'" + - W/"datetime'2020-05-13T14%3A13%3A52.3621325Z'" expires: - '-1' pragma: @@ -358,19 +358,19 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A02.2012044Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A33.7681369Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a0732e98-9216-4a32-aa14-076f3891db00?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -378,9 +378,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:03 GMT + - Wed, 13 May 2020 14:14:34 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A02.2012044Z'" + - W/"datetime'2020-05-13T14%3A14%3A33.7681369Z'" expires: - '-1' pragma: @@ -394,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1189' x-powered-by: - ASP.NET status: @@ -415,23 +415,23 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a0732e98-9216-4a32-aa14-076f3891db00?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354","name":"06efa9f9-2ae0-4ea4-af11-0f1c4e7c2354","status":"Succeeded","startTime":"2020-05-13T11:07:01.7764671Z","endTime":"2020-05-13T11:07:03.1673Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a0732e98-9216-4a32-aa14-076f3891db00","name":"a0732e98-9216-4a32-aa14-076f3891db00","status":"Succeeded","startTime":"2020-05-13T14:14:33.2896055Z","endTime":"2020-05-13T14:14:34.8209858Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '617' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:34 GMT + - Wed, 13 May 2020 14:15:05 GMT expires: - '-1' pragma: @@ -468,12 +468,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A03.0640364Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"dcdebf03-d978-96b0-598d-37bbb189d5a7","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A34.7200556Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"33c0c7aa-5a86-3950-607d-8427fd159bd2","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -484,9 +484,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:34 GMT + - Wed, 13 May 2020 14:15:06 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A03.0640364Z'" + - W/"datetime'2020-05-13T14%3A14%3A34.7200556Z'" expires: - '-1' pragma: @@ -523,14 +523,14 @@ interactions: - -g -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A07%3A03.0640364Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"dcdebf03-d978-96b0-598d-37bbb189d5a7","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A24.9812907Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"c79e228c-07f7-499c-fcf0-b9ba8d8b6c50","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A34.7200556Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"33c0c7aa-5a86-3950-607d-8427fd159bd2","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A13%3A52.3621325Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"19602fca-dbb3-2356-2e5e-ca9b6496bf19","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -541,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:38 GMT + - Wed, 13 May 2020 14:15:10 GMT expires: - '-1' pragma: @@ -580,7 +580,7 @@ interactions: - -g -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -592,17 +592,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/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a62fbc1-2b37-4e2a-bafa-926501de8972?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:07:41 GMT + - Wed, 13 May 2020 14:15:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a62fbc1-2b37-4e2a-bafa-926501de8972?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -614,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' x-powered-by: - ASP.NET status: @@ -635,12 +635,12 @@ interactions: - -g -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a62fbc1-2b37-4e2a-bafa-926501de8972?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1","name":"d8ec7f2e-e953-4a5a-931b-5b1ec60a86d1","status":"Succeeded","startTime":"2020-05-13T11:07:41.7642984Z","endTime":"2020-05-13T11:07:42.6081286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a62fbc1-2b37-4e2a-bafa-926501de8972","name":"7a62fbc1-2b37-4e2a-bafa-926501de8972","status":"Succeeded","startTime":"2020-05-13T14:15:14.4333063Z","endTime":"2020-05-13T14:15:15.5499715Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -651,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:12 GMT + - Wed, 13 May 2020 14:15:45 GMT expires: - '-1' pragma: @@ -690,7 +690,7 @@ interactions: - -g -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: DELETE @@ -702,17 +702,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/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2f677343-aca1-44a5-b5e5-7eccba2d1650?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:08:15 GMT + - Wed, 13 May 2020 14:15:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2f677343-aca1-44a5-b5e5-7eccba2d1650?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -724,7 +724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' x-powered-by: - ASP.NET status: @@ -745,12 +745,12 @@ interactions: - -g -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2f677343-aca1-44a5-b5e5-7eccba2d1650?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8dfd85e7-7af0-41ca-a6c3-34c7242b9a02","name":"8dfd85e7-7af0-41ca-a6c3-34c7242b9a02","status":"Succeeded","startTime":"2020-05-13T11:08:16.0394001Z","endTime":"2020-05-13T11:08:16.7738712Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2f677343-aca1-44a5-b5e5-7eccba2d1650","name":"2f677343-aca1-44a5-b5e5-7eccba2d1650","status":"Succeeded","startTime":"2020-05-13T14:15:50.3976282Z","endTime":"2020-05-13T14:15:51.2727168Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context @@ -761,7 +761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:05 GMT + - Wed, 13 May 2020 14:16:20 GMT expires: - '-1' pragma: @@ -798,7 +798,7 @@ interactions: - --resource-group -a User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:07 GMT + - Wed, 13 May 2020 14:16:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml index 6f92fe46a86..8b78c15940f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"12ed0e9d-eef3-4791-b188-5f77fa11f0d4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"14e4ef1d-a0e4-4a55-95a4-ab07df3eaa03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a67d80a1-09b7-4c14-8ca0-affb9b5eba0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21c48953-101b-4e04-ad8c-cdce2c58afc9?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/764d3d23-5450-460e-8f2d-f8c951645a3a?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:41 GMT + - Wed, 13 May 2020 14:13:10 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 962f90b9-66b2-4236-a047-753be9723047 + - c2659591-8e9e-4fe8-ad58-e813db37d5be x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21c48953-101b-4e04-ad8c-cdce2c58afc9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/764d3d23-5450-460e-8f2d-f8c951645a3a?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:45 GMT + - Wed, 13 May 2020 14:13:14 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8390d99-cca6-4205-8188-8c450551c463 + - 5ea7face-3bde-4edc-8d05-16ad9d1919a6 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"b1455f23-cb06-4751-a2a4-828c483ec814\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4a6a4cc5-4f84-4bda-a1ad-95ae6805254e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a67d80a1-09b7-4c14-8ca0-affb9b5eba0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:45 GMT + - Wed, 13 May 2020 14:13:14 GMT etag: - - W/"b1455f23-cb06-4751-a2a4-828c483ec814" + - W/"4a6a4cc5-4f84-4bda-a1ad-95ae6805254e" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d49b326-7352-4c64-8828-3f316a9e1a7d + - 3205b527-1dec-47b3-b006-ad40a88abe91 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"b1455f23-cb06-4751-a2a4-828c483ec814\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4a6a4cc5-4f84-4bda-a1ad-95ae6805254e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a67d80a1-09b7-4c14-8ca0-affb9b5eba0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:47 GMT + - Wed, 13 May 2020 14:13:16 GMT etag: - - W/"b1455f23-cb06-4751-a2a4-828c483ec814" + - W/"4a6a4cc5-4f84-4bda-a1ad-95ae6805254e" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b76a9897-c333-4c66-bf5f-9711e76560ab + - 0b12287a-eb87-4234-92a2-d380a49be14f status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"742633f3-e4c2-4fd8-ac9f-79c905187b33\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a67d80a1-09b7-4c14-8ca0-affb9b5eba0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n + \ \"etag\": \"W/\\\"742633f3-e4c2-4fd8-ac9f-79c905187b33\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"699cb264-77d0-4a7e-ace9-e184f0bc37ce\\\"\",\r\n + \ \"etag\": \"W/\\\"742633f3-e4c2-4fd8-ac9f-79c905187b33\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0ec6c0b-10f8-43d2-a228-3f91e192e839?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c818b0a9-0ccd-452e-bda2-3c4d6c53d375?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:48 GMT + - Wed, 13 May 2020 14:13:17 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d8b6e07-085e-43a0-b1bb-591f57f14079 + - 1d01a1cc-00b7-4645-ae94-eb3a5a26b2a9 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0ec6c0b-10f8-43d2-a228-3f91e192e839?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c818b0a9-0ccd-452e-bda2-3c4d6c53d375?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:52 GMT + - Wed, 13 May 2020 14:13:21 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcc8d590-e52f-4b55-8530-33593835489e + - fa9970ff-edd1-472e-8c3b-48f860eb8ccd status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9a5d2abd-1cb7-47f7-bab3-93405ceaba57\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"52c5e21d-2d96-490d-9369-7f068ba46309\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a67d80a1-09b7-4c14-8ca0-affb9b5eba0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n + \ \"etag\": \"W/\\\"9a5d2abd-1cb7-47f7-bab3-93405ceaba57\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"5b630367-66e5-439f-a50e-95b89b71fd23\\\"\",\r\n + \ \"etag\": \"W/\\\"9a5d2abd-1cb7-47f7-bab3-93405ceaba57\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:52 GMT + - Wed, 13 May 2020 14:13:22 GMT etag: - - W/"5b630367-66e5-439f-a50e-95b89b71fd23" + - W/"9a5d2abd-1cb7-47f7-bab3-93405ceaba57" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fab985d1-9d14-46a4-82db-205d63b3500c + - 904beb00-cc7f-4458-ab34-12b379d588c7 status: code: 200 message: OK @@ -473,19 +473,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A58.0950803Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A26.1128333Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","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/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc783739-5b2d-485b-b781-1a92bd2d1eae?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -493,9 +493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:59 GMT + - Wed, 13 May 2020 14:13:26 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A58.0950803Z'" + - W/"datetime'2020-05-13T14%3A13%3A26.1128333Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc783739-5b2d-485b-b781-1a92bd2d1eae?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4362afdd-5539-4980-b2aa-8ff7f7ffe6bd","name":"4362afdd-5539-4980-b2aa-8ff7f7ffe6bd","status":"Succeeded","startTime":"2020-05-13T11:05:58.0308406Z","endTime":"2020-05-13T11:05:58.1714855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc783739-5b2d-485b-b781-1a92bd2d1eae","name":"dc783739-5b2d-485b-b781-1a92bd2d1eae","status":"Succeeded","startTime":"2020-05-13T14:13:26.0604227Z","endTime":"2020-05-13T14:13:26.1697745Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:29 GMT + - Wed, 13 May 2020 14:13:58 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A58.1541222Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A13%3A26.1668713Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:29 GMT + - Wed, 13 May 2020 14:13:58 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A58.1541222Z'" + - W/"datetime'2020-05-13T14%3A13%3A26.1668713Z'" expires: - '-1' pragma: @@ -643,19 +643,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A34.1306812Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A02.1134157Z''\"","location":"westus2","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/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ba00a9-139e-4868-a251-fb412e67039b?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -663,9 +663,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:06:34 GMT + - Wed, 13 May 2020 14:14:03 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A34.1306812Z'" + - W/"datetime'2020-05-13T14%3A14%3A02.1134157Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ba00a9-139e-4868-a251-fb412e67039b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dc67982-008e-478c-978d-f66487d216b5","name":"2dc67982-008e-478c-978d-f66487d216b5","status":"Succeeded","startTime":"2020-05-13T11:06:34.0672261Z","endTime":"2020-05-13T11:06:34.2859319Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ba00a9-139e-4868-a251-fb412e67039b","name":"f3ba00a9-139e-4868-a251-fb412e67039b","status":"Succeeded","startTime":"2020-05-13T14:14:02.0647241Z","endTime":"2020-05-13T14:14:02.2678985Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:06 GMT + - Wed, 13 May 2020 14:14:33 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A06%3A34.2877934Z''\"","location":"westus2","properties":{"poolId":"b26f0d41-d1d4-220a-3095-e3d87398b995","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A14%3A02.2665246Z''\"","location":"westus2","properties":{"poolId":"d6c46ae9-e45e-a79f-2ebb-f4e644a5647f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:06 GMT + - Wed, 13 May 2020 14:14:34 GMT etag: - - W/"datetime'2020-05-13T11%3A06%3A34.2877934Z'" + - W/"datetime'2020-05-13T14%3A14%3A02.2665246Z'" expires: - '-1' pragma: @@ -814,19 +814,19 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A07%3A10.2423371Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A14%3A41.8706636Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","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/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:11 GMT + - Wed, 13 May 2020 14:14:42 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A10.2423371Z'" + - W/"datetime'2020-05-13T14%3A14%3A41.8706636Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1193' x-powered-by: - ASP.NET status: @@ -872,12 +872,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Creating","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -888,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:41 GMT + - Wed, 13 May 2020 14:15:13 GMT expires: - '-1' pragma: @@ -926,12 +926,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Creating","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -942,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:12 GMT + - Wed, 13 May 2020 14:15:43 GMT expires: - '-1' pragma: @@ -980,12 +980,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Creating","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:42 GMT + - Wed, 13 May 2020 14:16:13 GMT expires: - '-1' pragma: @@ -1034,12 +1034,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Creating","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:12 GMT + - Wed, 13 May 2020 14:16:43 GMT expires: - '-1' pragma: @@ -1088,12 +1088,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Creating","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Creating","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:42 GMT + - Wed, 13 May 2020 14:17:14 GMT expires: - '-1' pragma: @@ -1142,12 +1142,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bd2501e-df45-42ec-a603-0fd62be3bdbb","name":"7bd2501e-df45-42ec-a603-0fd62be3bdbb","status":"Succeeded","startTime":"2020-05-13T11:07:10.2027085Z","endTime":"2020-05-13T11:10:01.2822555Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c8d4662-62f1-4a5a-a588-334aecc3a53a","name":"7c8d4662-62f1-4a5a-a588-334aecc3a53a","status":"Succeeded","startTime":"2020-05-13T14:14:41.8001011Z","endTime":"2020-05-13T14:17:36.0203982Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1158,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:13 GMT + - Wed, 13 May 2020 14:17:44 GMT expires: - '-1' pragma: @@ -1196,12 +1196,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A10%3A01.2808567Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ea63d86f-c48c-b24c-12a7-c312712f3891","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_98501280","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A17%3A36.0254172Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a940629c-e16a-b487-ef4f-1f958ec606d1","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_955fe00183474412a263ec0f52d2aeeb_a36ca4de","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:14 GMT + - Wed, 13 May 2020 14:17:45 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A01.2808567Z'" + - W/"datetime'2020-05-13T14%3A17%3A36.0254172Z'" expires: - '-1' pragma: @@ -1237,7 +1237,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "ea63d86f-c48c-b24c-12a7-c312712f3891"}}' + body: '{"location": "westus2", "properties": {"fileSystemId": "a940629c-e16a-b487-ef4f-1f958ec606d1"}}' headers: Accept: - application/json @@ -1255,19 +1255,19 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23f1f480-2c61-4e80-bca3-7adb5170bbbd?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -1275,11 +1275,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:21 GMT + - Wed, 13 May 2020 14:17:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23f1f480-2c61-4e80-bca3-7adb5170bbbd?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1291,7 +1291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: @@ -1312,12 +1312,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23f1f480-2c61-4e80-bca3-7adb5170bbbd?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27e33d50-f5d4-4b89-87d9-0e27d4da14b5","name":"27e33d50-f5d4-4b89-87d9-0e27d4da14b5","status":"Succeeded","startTime":"2020-05-13T11:10:20.1627431Z","endTime":"2020-05-13T11:10:22.2921454Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23f1f480-2c61-4e80-bca3-7adb5170bbbd","name":"23f1f480-2c61-4e80-bca3-7adb5170bbbd","status":"Succeeded","startTime":"2020-05-13T14:17:54.5416006Z","endTime":"2020-05-13T14:17:57.7606033Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -1328,7 +1328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:52 GMT + - Wed, 13 May 2020 14:18:27 GMT expires: - '-1' pragma: @@ -1365,12 +1365,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bc9523b6-c69c-5821-e276-8f1bb64db175","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005","created":"2020-05-13T11:10:20Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c1316e75-c0e6-044e-6f72-e9114b2636ad","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000005","created":"2020-05-13T14:17:54Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1381,7 +1381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:53 GMT + - Wed, 13 May 2020 14:18:27 GMT expires: - '-1' pragma: @@ -1404,7 +1404,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "ea63d86f-c48c-b24c-12a7-c312712f3891"}}' + body: '{"location": "westus2", "properties": {"fileSystemId": "a940629c-e16a-b487-ef4f-1f958ec606d1"}}' headers: Accept: - application/json @@ -1422,19 +1422,19 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/494cf12a-9770-4a6c-85aa-6a32294f0666?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -1442,11 +1442,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:00 GMT + - Wed, 13 May 2020 14:18:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/494cf12a-9770-4a6c-85aa-6a32294f0666?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1458,7 +1458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1182' x-powered-by: - ASP.NET status: @@ -1479,12 +1479,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/494cf12a-9770-4a6c-85aa-6a32294f0666?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37e2c015-0c0c-4acb-bbeb-a150cdb9600e","name":"37e2c015-0c0c-4acb-bbeb-a150cdb9600e","status":"Succeeded","startTime":"2020-05-13T11:10:59.3496316Z","endTime":"2020-05-13T11:11:01.1627779Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/494cf12a-9770-4a6c-85aa-6a32294f0666","name":"494cf12a-9770-4a6c-85aa-6a32294f0666","status":"Succeeded","startTime":"2020-05-13T14:18:39.0027349Z","endTime":"2020-05-13T14:18:41.2951683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1495,7 +1495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:31 GMT + - Wed, 13 May 2020 14:19:11 GMT expires: - '-1' pragma: @@ -1532,12 +1532,12 @@ interactions: - -g -a -p -v -s -l --file-system-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"44c8539a-c963-edf1-7c14-2a521897cb74","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006","created":"2020-05-13T11:10:59Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"2addf067-ef9b-5338-8da7-7e6e398f9dae","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000006","created":"2020-05-13T14:18:39Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1548,7 +1548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:32 GMT + - Wed, 13 May 2020 14:19:12 GMT expires: - '-1' pragma: @@ -1585,14 +1585,14 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bc9523b6-c69c-5821-e276-8f1bb64db175","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000005","created":"2020-05-13T11:10:20Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"44c8539a-c963-edf1-7c14-2a521897cb74","fileSystemId":"ea63d86f-c48c-b24c-12a7-c312712f3891","name":"cli-sn-000006","created":"2020-05-13T11:10:59Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c1316e75-c0e6-044e-6f72-e9114b2636ad","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000005","created":"2020-05-13T14:17:54Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"2addf067-ef9b-5338-8da7-7e6e398f9dae","fileSystemId":"a940629c-e16a-b487-ef4f-1f958ec606d1","name":"cli-sn-000006","created":"2020-05-13T14:18:39Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1603,7 +1603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:33 GMT + - Wed, 13 May 2020 14:19:15 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml index 84f8cb8cd23..e6a017586ed 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"973f5ff3-f3c8-4831-867c-25111cbab6f4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bc7a9058-dd4b-4e22-b590-0276698fbeac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"00816c9e-f49e-49b0-9ceb-3ea4ccb83c95\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ceefe498-18d8-40ef-9efe-4486eaf94513?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e47ae7fb-f244-4d4f-bf67-a6bf36286eaf?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:29 GMT + - Wed, 13 May 2020 14:16:37 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3abc9121-25a9-4019-838f-37ee2a9e1c30 + - eb5936cd-7e2a-45d1-8d92-42b53984c0e9 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ceefe498-18d8-40ef-9efe-4486eaf94513?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e47ae7fb-f244-4d4f-bf67-a6bf36286eaf?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:33 GMT + - Wed, 13 May 2020 14:16:41 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e393d5d-df8f-48b1-813d-82172257b1a5 + - 31e3f28c-7add-4e04-8e95-4c9bb7e0d7cc status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"be9cd97a-f19c-4811-a8f2-a4cf16167e89\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dcfeafd9-2513-4f0b-b1c7-274d09bcdb36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"00816c9e-f49e-49b0-9ceb-3ea4ccb83c95\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:33 GMT + - Wed, 13 May 2020 14:16:41 GMT etag: - - W/"be9cd97a-f19c-4811-a8f2-a4cf16167e89" + - W/"dcfeafd9-2513-4f0b-b1c7-274d09bcdb36" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd059a84-6405-4fcf-8c7e-755c07d1c3d3 + - b0f76eff-6514-40b2-8abf-888878ce6b17 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"be9cd97a-f19c-4811-a8f2-a4cf16167e89\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dcfeafd9-2513-4f0b-b1c7-274d09bcdb36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"00816c9e-f49e-49b0-9ceb-3ea4ccb83c95\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:35 GMT + - Wed, 13 May 2020 14:16:42 GMT etag: - - W/"be9cd97a-f19c-4811-a8f2-a4cf16167e89" + - W/"dcfeafd9-2513-4f0b-b1c7-274d09bcdb36" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3bdf26f5-8ca7-4a44-a7c9-546e9dc554a5 + - d7573738-b732-4b31-8a0e-00e31bc14058 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"75e606ea-fe29-4627-951d-6899dc2458ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"00816c9e-f49e-49b0-9ceb-3ea4ccb83c95\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n + \ \"etag\": \"W/\\\"75e606ea-fe29-4627-951d-6899dc2458ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"f1fd878f-593c-463d-81d7-482668f09492\\\"\",\r\n + \ \"etag\": \"W/\\\"75e606ea-fe29-4627-951d-6899dc2458ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79971e91-f8aa-4d7f-bd1f-f232ef03fbbf?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fe2bb3b-195d-4b0e-b7db-e3ae07c25fd2?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:36 GMT + - Wed, 13 May 2020 14:16:43 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4319b128-107e-4417-9c19-c89279dca17b + - 4903234d-4326-457b-8cf5-2d08b5da2cef x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1183' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/79971e91-f8aa-4d7f-bd1f-f232ef03fbbf?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fe2bb3b-195d-4b0e-b7db-e3ae07c25fd2?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:40 GMT + - Wed, 13 May 2020 14:16:48 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bca72d8a-3aa7-47dd-b38b-e39215e33fa1 + - b1473992-658b-4fee-a1d3-9cad3d75cefd status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e6e84b89-e1ad-4274-807b-9e798c8ca05e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"06f948d2-f593-47ec-bad8-cff9d0f06896\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"00816c9e-f49e-49b0-9ceb-3ea4ccb83c95\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n + \ \"etag\": \"W/\\\"e6e84b89-e1ad-4274-807b-9e798c8ca05e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d8211cc5-fdb8-414c-84bd-813362652347\\\"\",\r\n + \ \"etag\": \"W/\\\"e6e84b89-e1ad-4274-807b-9e798c8ca05e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:41 GMT + - Wed, 13 May 2020 14:16:48 GMT etag: - - W/"d8211cc5-fdb8-414c-84bd-813362652347" + - W/"e6e84b89-e1ad-4274-807b-9e798c8ca05e" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98f26706-231e-4071-bb25-92fe72b90079 + - 7f1f45ef-e5c7-44ac-8430-2a99843a2ca2 status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A45.7520134Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A54.5329595Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/93a65c44-08ea-42c4-876a-8262463ab722?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47a9566b-ac2e-4446-b8e5-ee1c3afa9af5?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:46 GMT + - Wed, 13 May 2020 14:16:55 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A45.7520134Z'" + - W/"datetime'2020-05-13T14%3A16%3A54.5329595Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1187' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a65c44-08ea-42c4-876a-8262463ab722?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47a9566b-ac2e-4446-b8e5-ee1c3afa9af5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93a65c44-08ea-42c4-876a-8262463ab722","name":"93a65c44-08ea-42c4-876a-8262463ab722","status":"Succeeded","startTime":"2020-05-13T11:09:45.1953844Z","endTime":"2020-05-13T11:09:46.5503671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/47a9566b-ac2e-4446-b8e5-ee1c3afa9af5","name":"47a9566b-ac2e-4446-b8e5-ee1c3afa9af5","status":"Succeeded","startTime":"2020-05-13T14:16:53.9239519Z","endTime":"2020-05-13T14:16:55.3159937Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:17 GMT + - Wed, 13 May 2020 14:17:27 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A46.4396763Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A55.2026049Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:18 GMT + - Wed, 13 May 2020 14:17:27 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A46.4396763Z'" + - W/"datetime'2020-05-13T14%3A16%3A55.2026049Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A28.2200826Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A36.967019Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"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/b753e6e9-7609-4788-9a93-b2a0503f7827?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c3377e8-dbd8-4628-8425-9723555edfe6?api-version=2019-10-01 cache-control: - no-cache content-length: - - '572' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:29 GMT + - Wed, 13 May 2020 14:17:38 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A28.2200826Z'" + - W/"datetime'2020-05-13T14%3A17%3A36.967019Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1191' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b753e6e9-7609-4788-9a93-b2a0503f7827?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c3377e8-dbd8-4628-8425-9723555edfe6?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b753e6e9-7609-4788-9a93-b2a0503f7827","name":"b753e6e9-7609-4788-9a93-b2a0503f7827","status":"Succeeded","startTime":"2020-05-13T11:10:27.4751219Z","endTime":"2020-05-13T11:10:29.2888422Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0c3377e8-dbd8-4628-8425-9723555edfe6","name":"0c3377e8-dbd8-4628-8425-9723555edfe6","status":"Succeeded","startTime":"2020-05-13T14:17:36.4603937Z","endTime":"2020-05-13T14:17:37.8757855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:00 GMT + - Wed, 13 May 2020 14:18:09 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A29.1740104Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"cd5f63f6-1eda-6fc1-d05d-9e65ee4a3017","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A37.7738041Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"fa88bbe8-6ee6-975b-ab65-05eb0e5761f7","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:01 GMT + - Wed, 13 May 2020 14:18:09 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A29.1740104Z'" + - W/"datetime'2020-05-13T14%3A17%3A37.7738041Z'" expires: - '-1' pragma: @@ -815,19 +815,19 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A07.4171207Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A18%3A17.5774176Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -835,9 +835,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:09 GMT + - Wed, 13 May 2020 14:18:18 GMT etag: - - W/"datetime'2020-05-13T11%3A11%3A07.4171207Z'" + - W/"datetime'2020-05-13T14%3A18%3A17.5774176Z'" expires: - '-1' pragma: @@ -851,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1188' x-powered-by: - ASP.NET status: @@ -873,12 +873,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -889,7 +889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:39 GMT + - Wed, 13 May 2020 14:18:50 GMT expires: - '-1' pragma: @@ -927,12 +927,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -943,7 +943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:09 GMT + - Wed, 13 May 2020 14:19:21 GMT expires: - '-1' pragma: @@ -981,12 +981,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -997,7 +997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:39 GMT + - Wed, 13 May 2020 14:19:51 GMT expires: - '-1' pragma: @@ -1035,12 +1035,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:10 GMT + - Wed, 13 May 2020 14:20:21 GMT expires: - '-1' pragma: @@ -1089,12 +1089,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1105,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:40 GMT + - Wed, 13 May 2020 14:20:51 GMT expires: - '-1' pragma: @@ -1143,12 +1143,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1159,7 +1159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:11 GMT + - Wed, 13 May 2020 14:21:22 GMT expires: - '-1' pragma: @@ -1197,12 +1197,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1213,7 +1213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:41 GMT + - Wed, 13 May 2020 14:21:52 GMT expires: - '-1' pragma: @@ -1251,12 +1251,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1267,7 +1267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:12 GMT + - Wed, 13 May 2020 14:22:23 GMT expires: - '-1' pragma: @@ -1305,12 +1305,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1321,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:42 GMT + - Wed, 13 May 2020 14:22:53 GMT expires: - '-1' pragma: @@ -1359,12 +1359,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1375,7 +1375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:13 GMT + - Wed, 13 May 2020 14:23:24 GMT expires: - '-1' pragma: @@ -1413,12 +1413,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1429,7 +1429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:43 GMT + - Wed, 13 May 2020 14:23:54 GMT expires: - '-1' pragma: @@ -1467,12 +1467,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1483,7 +1483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:13 GMT + - Wed, 13 May 2020 14:24:24 GMT expires: - '-1' pragma: @@ -1521,12 +1521,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1537,7 +1537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:17:44 GMT + - Wed, 13 May 2020 14:24:54 GMT expires: - '-1' pragma: @@ -1575,12 +1575,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1591,7 +1591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:15 GMT + - Wed, 13 May 2020 14:25:26 GMT expires: - '-1' pragma: @@ -1629,12 +1629,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1645,7 +1645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:45 GMT + - Wed, 13 May 2020 14:25:56 GMT expires: - '-1' pragma: @@ -1683,12 +1683,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1699,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:15 GMT + - Wed, 13 May 2020 14:26:26 GMT expires: - '-1' pragma: @@ -1737,12 +1737,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1753,7 +1753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:46 GMT + - Wed, 13 May 2020 14:26:58 GMT expires: - '-1' pragma: @@ -1791,12 +1791,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1807,7 +1807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:16 GMT + - Wed, 13 May 2020 14:27:28 GMT expires: - '-1' pragma: @@ -1845,12 +1845,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1861,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:46 GMT + - Wed, 13 May 2020 14:27:58 GMT expires: - '-1' pragma: @@ -1899,12 +1899,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1915,7 +1915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:16 GMT + - Wed, 13 May 2020 14:28:28 GMT expires: - '-1' pragma: @@ -1953,12 +1953,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Creating","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1969,7 +1969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:48 GMT + - Wed, 13 May 2020 14:28:58 GMT expires: - '-1' pragma: @@ -2007,23 +2007,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","name":"bfa26505-2b9a-4cce-ba32-44e8d9c44ff3","status":"Succeeded","startTime":"2020-05-13T11:11:06.9568007Z","endTime":"2020-05-13T11:22:09.7819573Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:18 GMT + - Wed, 13 May 2020 14:29:29 GMT expires: - '-1' pragma: @@ -2061,132 +2061,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A09.5996815Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"014b2941-a656-39a4-26e7-6dc36539837b","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1583' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:22:19 GMT - etag: - - W/"datetime'2020-05-13T11%3A22%3A09.5996815Z'" - 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: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": - {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": - 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - Content-Length: - - '428' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A28.6561536Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '940' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:22:29 GMT - etag: - - W/"datetime'2020-05-13T11%3A22%3A28.6561536Z'" - 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-writes: - - '1193' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2197,7 +2077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:01 GMT + - Wed, 13 May 2020 14:30:00 GMT expires: - '-1' pragma: @@ -2231,16 +2111,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2251,7 +2131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:31 GMT + - Wed, 13 May 2020 14:30:30 GMT expires: - '-1' pragma: @@ -2285,16 +2165,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2305,7 +2185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:01 GMT + - Wed, 13 May 2020 14:31:00 GMT expires: - '-1' pragma: @@ -2339,16 +2219,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2359,7 +2239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:32 GMT + - Wed, 13 May 2020 14:31:31 GMT expires: - '-1' pragma: @@ -2393,16 +2273,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2413,7 +2293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:02 GMT + - Wed, 13 May 2020 14:32:02 GMT expires: - '-1' pragma: @@ -2447,16 +2327,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2467,7 +2347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:32 GMT + - Wed, 13 May 2020 14:32:32 GMT expires: - '-1' pragma: @@ -2501,16 +2381,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2521,7 +2401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:02 GMT + - Wed, 13 May 2020 14:33:02 GMT expires: - '-1' pragma: @@ -2555,16 +2435,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Creating","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2575,7 +2455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:34 GMT + - Wed, 13 May 2020 14:33:33 GMT expires: - '-1' pragma: @@ -2609,27 +2489,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/534eced6-5830-47f0-8aa2-024fbac06223","name":"534eced6-5830-47f0-8aa2-024fbac06223","status":"Succeeded","startTime":"2020-05-13T14:18:17.1617601Z","endTime":"2020-05-13T14:33:36.134183Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '652' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:04 GMT + - Wed, 13 May 2020 14:34:03 GMT expires: - '-1' pragma: @@ -2663,27 +2543,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A33%3A35.9612922Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"393946bb-8fd2-0b8b-e195-be7ea1827815","fileSystemId":"393946bb-8fd2-0b8b-e195-be7ea1827815","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"393946bb-8fd2-0b8b-e195-be7ea1827815","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_b4d7d62b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '1583' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:34 GMT + - Wed, 13 May 2020 14:34:04 GMT + etag: + - W/"datetime'2020-05-13T14%3A33%3A35.9612922Z'" expires: - '-1' pragma: @@ -2706,7 +2588,9 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' headers: Accept: - application/json @@ -2716,82 +2600,38 @@ interactions: - netappfiles volume create Connection: - keep-alive - ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: + Content-Length: + - '428' + Content-Type: - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:28: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A34%3A14.2332189Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","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/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '642' + - '940' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:35 GMT + - Wed, 13 May 2020 14:34:15 GMT + etag: + - W/"datetime'2020-05-13T14%3A34%3A14.2332189Z'" expires: - '-1' pragma: @@ -2802,17 +2642,15 @@ 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: + - '1191' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2829,12 +2667,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -2845,7 +2683,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:05 GMT + - Wed, 13 May 2020 14:34:45 GMT expires: - '-1' pragma: @@ -2883,12 +2721,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -2899,7 +2737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:37 GMT + - Wed, 13 May 2020 14:35:17 GMT expires: - '-1' pragma: @@ -2937,12 +2775,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -2953,7 +2791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:07 GMT + - Wed, 13 May 2020 14:35:47 GMT expires: - '-1' pragma: @@ -2991,12 +2829,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -3007,7 +2845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:37 GMT + - Wed, 13 May 2020 14:36:17 GMT expires: - '-1' pragma: @@ -3045,12 +2883,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -3061,7 +2899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:07 GMT + - Wed, 13 May 2020 14:36:47 GMT expires: - '-1' pragma: @@ -3099,12 +2937,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -3115,7 +2953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:38 GMT + - Wed, 13 May 2020 14:37:19 GMT expires: - '-1' pragma: @@ -3153,12 +2991,12 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Creating","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -3169,7 +3007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:08 GMT + - Wed, 13 May 2020 14:37:49 GMT expires: - '-1' pragma: @@ -3207,23 +3045,23 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aeed5ede-9155-4c3b-a440-b9ded396375f","name":"aeed5ede-9155-4c3b-a440-b9ded396375f","status":"Succeeded","startTime":"2020-05-13T14:34:13.4715664Z","endTime":"2020-05-13T14:38:11.7780096Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:39 GMT + - Wed, 13 May 2020 14:38:19 GMT expires: - '-1' pragma: @@ -3261,23 +3099,25 @@ interactions: --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A38%3A11.5503459Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8e49204d-e573-5785-52c7-6ff744722dc8","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_b4d7d62b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '1583' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:10 GMT + - Wed, 13 May 2020 14:38:20 GMT + etag: + - W/"datetime'2020-05-13T14%3A38%3A11.5503459Z'" expires: - '-1' pragma: @@ -3307,31 +3147,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume list Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A33%3A35.9612922Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"393946bb-8fd2-0b8b-e195-be7ea1827815","fileSystemId":"393946bb-8fd2-0b8b-e195-be7ea1827815","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"393946bb-8fd2-0b8b-e195-be7ea1827815","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_b4d7d62b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A38%3A11.5503459Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8e49204d-e573-5785-52c7-6ff744722dc8","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_b4d7d62b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '642' + - '3179' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:33:40 GMT + - Wed, 13 May 2020 14:38:23 GMT expires: - '-1' pragma: @@ -3361,33 +3202,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '' 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/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 cache-control: - no-cache content-length: - - '642' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 13 May 2020 11:34:10 GMT + - Wed, 13 May 2020 14:38:29 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3396,17 +3242,15 @@ 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-deletes: + - '14996' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3415,20 +3259,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3439,7 +3282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:34:41 GMT + - Wed, 13 May 2020 14:39:00 GMT expires: - '-1' pragma: @@ -3469,20 +3312,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3493,7 +3335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:11 GMT + - Wed, 13 May 2020 14:39:30 GMT expires: - '-1' pragma: @@ -3523,20 +3365,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3547,7 +3388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:35:42 GMT + - Wed, 13 May 2020 14:40:01 GMT expires: - '-1' pragma: @@ -3577,20 +3418,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Creating","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3601,7 +3441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:13 GMT + - Wed, 13 May 2020 14:40:32 GMT expires: - '-1' pragma: @@ -3631,31 +3471,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2a53697-770a-4773-a38c-a9fed91cfccf","name":"e2a53697-770a-4773-a38c-a9fed91cfccf","status":"Succeeded","startTime":"2020-05-13T11:22:28.1772912Z","endTime":"2020-05-13T11:36:35.3480753Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:43 GMT + - Wed, 13 May 2020 14:41:02 GMT expires: - '-1' pragma: @@ -3685,33 +3524,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1583' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:44 GMT - etag: - - W/"datetime'2020-05-13T11%3A36%3A35.1799522Z'" + - Wed, 13 May 2020 14:41:32 GMT expires: - '-1' pragma: @@ -3741,32 +3577,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume delete Connection: - keep-alive ParameterSetName: - - --resource-group -a -p + - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A22%3A09.5996815Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"014b2941-a656-39a4-26e7-6dc36539837b","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"014b2941-a656-39a4-26e7-6dc36539837b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3179' + - '642' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:36:46 GMT + - Wed, 13 May 2020 14:42:04 GMT expires: - '-1' pragma: @@ -3788,63 +3622,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-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/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 13 May 2020 11:36:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-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-deletes: - - '14998' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: @@ -3860,12 +3637,12 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3876,7 +3653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:37:24 GMT + - Wed, 13 May 2020 14:42:34 GMT expires: - '-1' pragma: @@ -3913,12 +3690,12 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3929,7 +3706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:37:55 GMT + - Wed, 13 May 2020 14:43:04 GMT expires: - '-1' pragma: @@ -3966,12 +3743,12 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -3982,7 +3759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:38:25 GMT + - Wed, 13 May 2020 14:43:34 GMT expires: - '-1' pragma: @@ -4019,12 +3796,12 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Deleting","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Deleting","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -4035,7 +3812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:38:55 GMT + - Wed, 13 May 2020 14:44:05 GMT expires: - '-1' pragma: @@ -4072,12 +3849,12 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d5cf4c3c-918c-4c95-abe1-47bb6206db49","name":"d5cf4c3c-918c-4c95-abe1-47bb6206db49","status":"Succeeded","startTime":"2020-05-13T11:36:51.8128078Z","endTime":"2020-05-13T11:38:57.0368228Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7a43865a-70d2-4ee0-9814-010eeba1a762","name":"7a43865a-70d2-4ee0-9814-010eeba1a762","status":"Succeeded","startTime":"2020-05-13T14:38:29.3639609Z","endTime":"2020-05-13T14:44:06.7345312Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -4088,7 +3865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:39:26 GMT + - Wed, 13 May 2020 14:44:36 GMT expires: - '-1' pragma: @@ -4125,14 +3902,14 @@ interactions: - -g -a -p User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A36%3A35.1799522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cad03c2b-0186-d062-7187-096c4827ee4f","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"cad03c2b-0186-d062-7187-096c4827ee4f","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_bbd40c52","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A38%3A11.5503459Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8e49204d-e573-5785-52c7-6ff744722dc8","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"8e49204d-e573-5785-52c7-6ff744722dc8","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","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_fb0467dd8e8011e9a7f006ddec9cd511_b4d7d62b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}]}' headers: access-control-expose-headers: - Request-Context @@ -4143,7 +3920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:39:29 GMT + - Wed, 13 May 2020 14:44:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml index 2a0332063c8..b21cff42d67 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n - \ \"etag\": \"W/\\\"7b3424f7-808a-47eb-a047-27f7642c601f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c1dd0968-df18-403d-b796-d6bb23add840\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7c5969d6-8300-457d-9dde-1b9a758371c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6eeaffc4-cb03-495b-9f91-c39a1faedeb7?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/480371d2-6d27-41b5-a35d-51cee43b8042?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:29 GMT + - Wed, 13 May 2020 14:16:28 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 56931923-3b5f-4cc5-b36f-8c95dddf1790 + - c1bbd782-39c5-40dc-9588-aa3ebf843e81 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6eeaffc4-cb03-495b-9f91-c39a1faedeb7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/480371d2-6d27-41b5-a35d-51cee43b8042?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:33 GMT + - Wed, 13 May 2020 14:16:32 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dcb0acf4-bd8a-48a6-8210-2aca1bf10654 + - 425ab871-4d50-45ae-a1a0-bb6f13d88e75 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n - \ \"etag\": \"W/\\\"804a03cb-dd9f-49e2-89fd-0f738730d526\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ad7a57bb-9052-44c2-bbae-4f1916d7d9c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7c5969d6-8300-457d-9dde-1b9a758371c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:33 GMT + - Wed, 13 May 2020 14:16:32 GMT etag: - - W/"804a03cb-dd9f-49e2-89fd-0f738730d526" + - W/"ad7a57bb-9052-44c2-bbae-4f1916d7d9c5" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f26d4a05-8345-4cc8-a462-d632eacc6582 + - 74a2f0da-9506-4676-8f02-8244a82e5695 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n - \ \"etag\": \"W/\\\"804a03cb-dd9f-49e2-89fd-0f738730d526\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ad7a57bb-9052-44c2-bbae-4f1916d7d9c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7c5969d6-8300-457d-9dde-1b9a758371c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:35 GMT + - Wed, 13 May 2020 14:16:33 GMT etag: - - W/"804a03cb-dd9f-49e2-89fd-0f738730d526" + - W/"ad7a57bb-9052-44c2-bbae-4f1916d7d9c5" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9856253b-6970-4244-a8a6-0f1926170aab + - ac8d74ee-e0ee-4056-97f2-96160b80a4d4 status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n - \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b805bfdd-5ed2-4b05-ad44-7a4eae2410aa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7c5969d6-8300-457d-9dde-1b9a758371c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n - \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n + \ \"etag\": \"W/\\\"b805bfdd-5ed2-4b05-ad44-7a4eae2410aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n - \ \"etag\": \"W/\\\"58b98172-89e2-442e-a76e-fb2b7dd75495\\\"\",\r\n + \ \"etag\": \"W/\\\"b805bfdd-5ed2-4b05-ad44-7a4eae2410aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b557fa24-ccfe-4079-a177-e93ce903b512?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/795e0eb5-c65b-4fc9-a1db-8145ce2cd6ff?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:36 GMT + - Wed, 13 May 2020 14:16:35 GMT expires: - '-1' pragma: @@ -322,9 +322,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2b0b807-62bc-4a4c-887c-4eb4842f78e2 + - 283329fb-5202-4d4d-a7b4-3052b25d3da0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b557fa24-ccfe-4079-a177-e93ce903b512?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/795e0eb5-c65b-4fc9-a1db-8145ce2cd6ff?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:40 GMT + - Wed, 13 May 2020 14:16:39 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef1d2db6-df5a-46aa-b737-45356c4cff76 + - 6a871f19-dab4-41b0-8d87-786e8820bc4b status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\",\r\n - \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c2c25b00-ff2d-48b6-aede-68977e058322\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92a3cd1c-77b4-4bee-8bdc-35810b870fe1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7c5969d6-8300-457d-9dde-1b9a758371c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n - \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n + \ \"etag\": \"W/\\\"c2c25b00-ff2d-48b6-aede-68977e058322\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n - \ \"etag\": \"W/\\\"821f7534-8364-4917-a73f-17f3e7326dd4\\\"\",\r\n + \ \"etag\": \"W/\\\"c2c25b00-ff2d-48b6-aede-68977e058322\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:40 GMT + - Wed, 13 May 2020 14:16:39 GMT etag: - - W/"821f7534-8364-4917-a73f-17f3e7326dd4" + - W/"c2c25b00-ff2d-48b6-aede-68977e058322" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23ce8502-5cd3-42df-90ac-e888422750c6 + - 85e7b73d-0803-47e5-a3ad-c06c0c907d73 status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A45.7420029Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A47.5552279Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","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/51976dc7-f453-4e9d-8c01-42ee1f6fcd16?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f271f1df-6202-43cc-abca-184f97045f68?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:46 GMT + - Wed, 13 May 2020 14:16:48 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A45.7420029Z'" + - W/"datetime'2020-05-13T14%3A16%3A47.5552279Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-powered-by: - ASP.NET status: @@ -530,12 +530,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51976dc7-f453-4e9d-8c01-42ee1f6fcd16?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f271f1df-6202-43cc-abca-184f97045f68?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51976dc7-f453-4e9d-8c01-42ee1f6fcd16","name":"51976dc7-f453-4e9d-8c01-42ee1f6fcd16","status":"Succeeded","startTime":"2020-05-13T11:09:45.3107551Z","endTime":"2020-05-13T11:09:46.5385429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f271f1df-6202-43cc-abca-184f97045f68","name":"f271f1df-6202-43cc-abca-184f97045f68","status":"Succeeded","startTime":"2020-05-13T14:16:47.0606292Z","endTime":"2020-05-13T14:16:48.5650431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -546,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:18 GMT + - Wed, 13 May 2020 14:17:19 GMT expires: - '-1' pragma: @@ -583,12 +583,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A09%3A46.4336709Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A16%3A48.4560967Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000003","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -599,9 +599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:18 GMT + - Wed, 13 May 2020 14:17:20 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A46.4336709Z'" + - W/"datetime'2020-05-13T14%3A16%3A48.4560967Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A26.6155246Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A30.106363Z''\"","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/dc51585d-298a-4075-8c07-9553943ba4ff?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c8bbae9-59e7-4f3a-9ab1-1b202e183e4d?api-version=2019-10-01 cache-control: - no-cache content-length: - - '547' + - '546' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:27 GMT + - Wed, 13 May 2020 14:17:31 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A26.6155246Z'" + - W/"datetime'2020-05-13T14%3A17%3A30.106363Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1189' x-powered-by: - ASP.NET status: @@ -700,23 +700,23 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc51585d-298a-4075-8c07-9553943ba4ff?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c8bbae9-59e7-4f3a-9ab1-1b202e183e4d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc51585d-298a-4075-8c07-9553943ba4ff","name":"dc51585d-298a-4075-8c07-9553943ba4ff","status":"Succeeded","startTime":"2020-05-13T11:10:26.202971Z","endTime":"2020-05-13T11:10:27.6249583Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6c8bbae9-59e7-4f3a-9ab1-1b202e183e4d","name":"6c8bbae9-59e7-4f3a-9ab1-1b202e183e4d","status":"Succeeded","startTime":"2020-05-13T14:17:29.5319351Z","endTime":"2020-05-13T14:17:31.0696187Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '619' + - '620' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:58 GMT + - Wed, 13 May 2020 14:18:01 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A10%3A27.5123949Z''\"","location":"westus2stage","properties":{"poolId":"455298ed-67ff-a2a5-518f-715e8dae32e6","name":"cli-acc-000003/cli-pool-000005","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A17%3A30.9581888Z''\"","location":"westus2stage","properties":{"poolId":"5941121f-76df-d15d-44be-fc736dbb3f9c","name":"cli-acc-000003/cli-pool-000005","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:10:58 GMT + - Wed, 13 May 2020 14:18:02 GMT etag: - - W/"datetime'2020-05-13T11%3A10%3A27.5123949Z'" + - W/"datetime'2020-05-13T14%3A17%3A30.9581888Z'" expires: - '-1' pragma: @@ -814,29 +814,29 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A11%3A07.2709769Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A18%3A30.60806Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","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/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 cache-control: - no-cache content-length: - - '915' + - '913' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:11:08 GMT + - Wed, 13 May 2020 14:18:31 GMT etag: - - W/"datetime'2020-05-13T11%3A11%3A07.2709769Z'" + - W/"datetime'2020-05-13T14%3A18%3A30.60806Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1190' x-powered-by: - ASP.NET status: @@ -872,120 +872,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:11: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:12: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -996,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:12:39 GMT + - Wed, 13 May 2020 14:19:03 GMT expires: - '-1' pragma: @@ -1034,12 +926,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1050,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:09 GMT + - Wed, 13 May 2020 14:19:33 GMT expires: - '-1' pragma: @@ -1088,12 +980,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1104,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:13:39 GMT + - Wed, 13 May 2020 14:20:04 GMT expires: - '-1' pragma: @@ -1142,12 +1034,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1158,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:09 GMT + - Wed, 13 May 2020 14:20:34 GMT expires: - '-1' pragma: @@ -1196,12 +1088,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1212,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:40 GMT + - Wed, 13 May 2020 14:21:05 GMT expires: - '-1' pragma: @@ -1250,12 +1142,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1266,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:10 GMT + - Wed, 13 May 2020 14:21:35 GMT expires: - '-1' pragma: @@ -1304,12 +1196,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1320,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:41 GMT + - Wed, 13 May 2020 14:22:05 GMT expires: - '-1' pragma: @@ -1358,12 +1250,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Creating","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1374,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:11 GMT + - Wed, 13 May 2020 14:22:36 GMT expires: - '-1' pragma: @@ -1412,228 +1304,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:16: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:17: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:17: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Creating","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:18: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","name":"0cf98a59-13a5-46d0-8a5c-fa4d4c039ada","status":"Succeeded","startTime":"2020-05-13T11:11:06.8008193Z","endTime":"2020-05-13T11:18:16.8919912Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/22d02c57-9fe9-477f-9892-ba2513e9c979","name":"22d02c57-9fe9-477f-9892-ba2513e9c979","status":"Succeeded","startTime":"2020-05-13T14:18:30.1437108Z","endTime":"2020-05-13T14:22:37.2800132Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1644,7 +1320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:44 GMT + - Wed, 13 May 2020 14:23:07 GMT expires: - '-1' pragma: @@ -1682,12 +1358,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A18%3A16.7247062Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","fileSystemId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"575f1973-0b01-77db-5bc3-51b4a3cb8f5a","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","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_fb0467dd8e8011e9a7f006ddec9cd511_9791d9ea","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A22%3A37.0921837Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"9c47fee5-9151-3759-1fdf-fb34a58040c4","fileSystemId":"9c47fee5-9151-3759-1fdf-fb34a58040c4","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"9c47fee5-9151-3759-1fdf-fb34a58040c4","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","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_fb0467dd8e8011e9a7f006ddec9cd511_c3bc8db9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}' headers: access-control-expose-headers: - Request-Context @@ -1698,9 +1374,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:44 GMT + - Wed, 13 May 2020 14:23:07 GMT etag: - - W/"datetime'2020-05-13T11%3A18%3A16.7247062Z'" + - W/"datetime'2020-05-13T14%3A22%3A37.0921837Z'" expires: - '-1' pragma: @@ -1742,7 +1418,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -1750,10 +1426,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n - \ \"etag\": \"W/\\\"caa4d952-56d1-4f97-bf1f-decc1473dc95\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9c98b0ff-b7b9-4c6e-bc19-f82ce2b66957\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d6d05a03-d1d0-4b93-976e-d1b12507b3a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1762,7 +1438,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/638a1905-8a2a-4372-8867-ad3ef168bbd6?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -1770,7 +1446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:53 GMT + - Wed, 13 May 2020 14:23:18 GMT expires: - '-1' pragma: @@ -1783,9 +1459,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2271ba9a-8406-476a-85e1-db6a7356dbff + - c75f7b6d-d97b-4ab9-b1c8-34ecc80a81fb x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' status: code: 201 message: Created @@ -1804,9 +1480,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/638a1905-8a2a-4372-8867-ad3ef168bbd6?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1818,7 +1494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:18:57 GMT + - Wed, 13 May 2020 14:23:21 GMT expires: - '-1' pragma: @@ -1835,7 +1511,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ff14d45-e41c-47ce-b3b8-679a899030d2 + - 5a373c25-244a-4a46-8002-5f6396389496 status: code: 200 message: OK @@ -1854,9 +1530,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/638a1905-8a2a-4372-8867-ad3ef168bbd6?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1868,7 +1544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:07 GMT + - Wed, 13 May 2020 14:23:31 GMT expires: - '-1' pragma: @@ -1885,7 +1561,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e75ed2a7-968a-4fed-ac39-bf890f816e8f + - bc316506-f2a6-4188-bdcf-99042c7d19d4 status: code: 200 message: OK @@ -1904,9 +1580,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/34ca8688-5906-48e0-9c90-6a468ed4bd51?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/638a1905-8a2a-4372-8867-ad3ef168bbd6?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1918,7 +1594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:17 GMT + - Wed, 13 May 2020 14:23:42 GMT expires: - '-1' pragma: @@ -1935,7 +1611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fd2e39f-57b4-4600-9ee8-4db5dd41f34b + - 308fdcaa-24e6-44f2-915a-ba00f4696bc7 status: code: 200 message: OK @@ -1954,16 +1630,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n - \ \"etag\": \"W/\\\"0d847b11-ca7b-445b-af67-978cbef7f721\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"25675997-aea6-4ac6-8283-c86863185c2f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d6d05a03-d1d0-4b93-976e-d1b12507b3a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1976,9 +1652,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:18 GMT + - Wed, 13 May 2020 14:23:42 GMT etag: - - W/"0d847b11-ca7b-445b-af67-978cbef7f721" + - W/"25675997-aea6-4ac6-8283-c86863185c2f" expires: - '-1' pragma: @@ -1995,7 +1671,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b803055-4af0-46f2-b994-9961f595366e + - ee9a834c-845d-452f-9f3a-23523c925f36 status: code: 200 message: OK @@ -2014,7 +1690,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -2022,10 +1698,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n - \ \"etag\": \"W/\\\"0d847b11-ca7b-445b-af67-978cbef7f721\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"25675997-aea6-4ac6-8283-c86863185c2f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d6d05a03-d1d0-4b93-976e-d1b12507b3a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -2038,9 +1714,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:20 GMT + - Wed, 13 May 2020 14:23:43 GMT etag: - - W/"0d847b11-ca7b-445b-af67-978cbef7f721" + - W/"25675997-aea6-4ac6-8283-c86863185c2f" expires: - '-1' pragma: @@ -2057,7 +1733,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 793039e7-dc43-404e-b551-5b7554307607 + - 402bf790-a5be-4114-9196-b32785023b1a status: code: 200 message: OK @@ -2086,7 +1762,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -2094,20 +1770,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n - \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3313b625-bd05-4620-9b09-ab4aa796ed9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d6d05a03-d1d0-4b93-976e-d1b12507b3a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n - \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n + \ \"etag\": \"W/\\\"3313b625-bd05-4620-9b09-ab4aa796ed9c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n - \ \"etag\": \"W/\\\"4240ef71-9091-4aa7-92c3-334b5923ad50\\\"\",\r\n + \ \"etag\": \"W/\\\"3313b625-bd05-4620-9b09-ab4aa796ed9c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -2120,7 +1796,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eb71dbe0-bcf5-45db-9d00-0d8091b106f2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f07a2fbb-7f97-407c-9191-de5a1eb76ccc?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -2128,7 +1804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:21 GMT + - Wed, 13 May 2020 14:23:44 GMT expires: - '-1' pragma: @@ -2145,9 +1821,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4875a17-725d-4450-a09b-f69e5b0816cd + - 594f1551-5df2-4645-995a-b93eacd6069c x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' status: code: 200 message: OK @@ -2166,9 +1842,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eb71dbe0-bcf5-45db-9d00-0d8091b106f2?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f07a2fbb-7f97-407c-9191-de5a1eb76ccc?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2180,7 +1856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:24 GMT + - Wed, 13 May 2020 14:23:48 GMT expires: - '-1' pragma: @@ -2190,10 +1866,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b60743d5-9129-4d81-8f2e-9978d8c057b0 + - fb1a848d-c5de-436d-adbb-2746605e5bab status: code: 200 message: OK @@ -2212,26 +1892,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\",\r\n - \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fd9a4d1e-00a7-45bf-9db4-9bc336c46202\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d62d2fc2-bd50-4a88-a593-69f9fab38400\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d6d05a03-d1d0-4b93-976e-d1b12507b3a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n - \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n + \ \"etag\": \"W/\\\"fd9a4d1e-00a7-45bf-9db4-9bc336c46202\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n - \ \"etag\": \"W/\\\"fcbeea51-377b-4bd7-989d-86a6e13cac65\\\"\",\r\n + \ \"etag\": \"W/\\\"fd9a4d1e-00a7-45bf-9db4-9bc336c46202\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -2250,9 +1930,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:24 GMT + - Wed, 13 May 2020 14:23:48 GMT etag: - - W/"fcbeea51-377b-4bd7-989d-86a6e13cac65" + - W/"fd9a4d1e-00a7-45bf-9db4-9bc336c46202" expires: - '-1' pragma: @@ -2262,10 +1942,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ef5f9f7-e600-4675-bc30-b3a067e679f5 + - f687d1f5-167b-4259-b38b-1c3adafff8f5 status: code: 200 message: OK @@ -2288,19 +1972,19 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A19%3A31.0239987Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A23%3A54.6561557Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","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/e78136ef-e3dd-4844-ac4c-75bf3f22ab61?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/84dcef15-3123-4978-97c3-62c349285433?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -2308,9 +1992,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:19:32 GMT + - Wed, 13 May 2020 14:23:55 GMT etag: - - W/"datetime'2020-05-13T11%3A19%3A31.0239987Z'" + - W/"datetime'2020-05-13T14%3A23%3A54.6561557Z'" expires: - '-1' pragma: @@ -2324,7 +2008,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' x-powered-by: - ASP.NET status: @@ -2345,12 +2029,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e78136ef-e3dd-4844-ac4c-75bf3f22ab61?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/84dcef15-3123-4978-97c3-62c349285433?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e78136ef-e3dd-4844-ac4c-75bf3f22ab61","name":"e78136ef-e3dd-4844-ac4c-75bf3f22ab61","status":"Succeeded","startTime":"2020-05-13T11:19:30.9704524Z","endTime":"2020-05-13T11:19:31.0798522Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/84dcef15-3123-4978-97c3-62c349285433","name":"84dcef15-3123-4978-97c3-62c349285433","status":"Succeeded","startTime":"2020-05-13T14:23:54.5830304Z","endTime":"2020-05-13T14:23:54.7236607Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2361,7 +2045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:03 GMT + - Wed, 13 May 2020 14:24:26 GMT expires: - '-1' pragma: @@ -2398,25 +2082,25 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A19%3A31.0850387Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A23%3A54.725201Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000004","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '465' + - '464' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:03 GMT + - Wed, 13 May 2020 14:24:26 GMT etag: - - W/"datetime'2020-05-13T11%3A19%3A31.0850387Z'" + - W/"datetime'2020-05-13T14%3A23%3A54.725201Z'" expires: - '-1' pragma: @@ -2458,29 +2142,29 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A20%3A09.045061Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A24%3A33.6918876Z''\"","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/d421e5ae-4357-48d3-a34e-29c0fced0e9d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df9c42a4-2224-4cc0-98a0-2669f8fc58c3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '553' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:09 GMT + - Wed, 13 May 2020 14:24:35 GMT etag: - - W/"datetime'2020-05-13T11%3A20%3A09.045061Z'" + - W/"datetime'2020-05-13T14%3A24%3A33.6918876Z'" expires: - '-1' pragma: @@ -2494,7 +2178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1190' x-powered-by: - ASP.NET status: @@ -2515,12 +2199,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d421e5ae-4357-48d3-a34e-29c0fced0e9d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df9c42a4-2224-4cc0-98a0-2669f8fc58c3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d421e5ae-4357-48d3-a34e-29c0fced0e9d","name":"d421e5ae-4357-48d3-a34e-29c0fced0e9d","status":"Succeeded","startTime":"2020-05-13T11:20:08.9759421Z","endTime":"2020-05-13T11:20:09.1946784Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df9c42a4-2224-4cc0-98a0-2669f8fc58c3","name":"df9c42a4-2224-4cc0-98a0-2669f8fc58c3","status":"Succeeded","startTime":"2020-05-13T14:24:33.5916226Z","endTime":"2020-05-13T14:24:33.9041579Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -2531,7 +2215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:41 GMT + - Wed, 13 May 2020 14:25:06 GMT expires: - '-1' pragma: @@ -2568,12 +2252,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A20%3A09.1911587Z''\"","location":"southcentralusstage","properties":{"poolId":"3f5ba045-c7c2-ac1e-739d-00a8a45dd381","name":"cli-acc-000004/cli-pool-000006","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A24%3A33.9010253Z''\"","location":"southcentralusstage","properties":{"poolId":"7da2544c-7c41-0eed-71a6-9e4af7cca165","name":"cli-acc-000004/cli-pool-000006","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -2584,9 +2268,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:41 GMT + - Wed, 13 May 2020 14:25:06 GMT etag: - - W/"datetime'2020-05-13T11%3A20%3A09.1911587Z'" + - W/"datetime'2020-05-13T14%3A24%3A33.9010253Z'" expires: - '-1' pragma: @@ -2633,19 +2317,19 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A20%3A49.7739095Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A25%3A14.2105905Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","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/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -2653,9 +2337,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:20:50 GMT + - Wed, 13 May 2020 14:25:15 GMT etag: - - W/"datetime'2020-05-13T11%3A20%3A49.7739095Z'" + - W/"datetime'2020-05-13T14%3A25%3A14.2105905Z'" expires: - '-1' pragma: @@ -2669,7 +2353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1190' x-powered-by: - ASP.NET status: @@ -2692,12 +2376,67 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 May 2020 14:25: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 + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context @@ -2708,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:21 GMT + - Wed, 13 May 2020 14:26:16 GMT expires: - '-1' pragma: @@ -2747,12 +2486,12 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context @@ -2763,7 +2502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:21:52 GMT + - Wed, 13 May 2020 14:26:46 GMT expires: - '-1' pragma: @@ -2802,12 +2541,12 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context @@ -2818,7 +2557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:22 GMT + - Wed, 13 May 2020 14:27:17 GMT expires: - '-1' pragma: @@ -2857,12 +2596,12 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context @@ -2873,7 +2612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:22:52 GMT + - Wed, 13 May 2020 14:27:47 GMT expires: - '-1' pragma: @@ -2912,12 +2651,12 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Creating","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Creating","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context @@ -2928,7 +2667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:23 GMT + - Wed, 13 May 2020 14:28:17 GMT expires: - '-1' pragma: @@ -2967,23 +2706,23 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64eec43c-fc22-4c4c-81dc-e1b4800306da","name":"64eec43c-fc22-4c4c-81dc-e1b4800306da","status":"Succeeded","startTime":"2020-05-13T11:20:49.7174944Z","endTime":"2020-05-13T11:23:49.689048Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b92433f-f5a5-4f63-874b-9ce3e2d14c07","name":"9b92433f-f5a5-4f63-874b-9ce3e2d14c07","status":"Succeeded","startTime":"2020-05-13T14:25:14.1684566Z","endTime":"2020-05-13T14:28:35.3544722Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '659' + - '660' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:53 GMT + - Wed, 13 May 2020 14:28:48 GMT expires: - '-1' pragma: @@ -3022,25 +2761,25 @@ interactions: --replication-schedule --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A23%3A49.694506Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","fileSystemId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","startIp":"10.1.0.4","endIp":"10.1.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"fileSystemId":"099b99a2-e7e3-cbe8-7bcf-82ab0bfbbda8","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","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_2a1b69b6177611eab66c6e734b166c7d_3007dd9f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A28%3A35.3611825Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2c48d5e6-81b0-40a4-7baa-557377cb5f72","fileSystemId":"2c48d5e6-81b0-40a4-7baa-557377cb5f72","startIp":"10.1.0.4","endIp":"10.1.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"fileSystemId":"2c48d5e6-81b0-40a4-7baa-557377cb5f72","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","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_2a1b69b6177611eab66c6e734b166c7d_1dcaa6cb","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1995' + - '1996' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:23:53 GMT + - Wed, 13 May 2020 14:28:49 GMT etag: - - W/"datetime'2020-05-13T11%3A23%3A49.694506Z'" + - W/"datetime'2020-05-13T14%3A28%3A35.3611825Z'" expires: - '-1' pragma: @@ -3081,7 +2820,7 @@ interactions: - -g -a -p -v --remote-volume-resource-id User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST @@ -3093,17 +2832,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/fcc60566-ff72-42e9-ac2d-25aeb8be2aac?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1be8ff7d-c0a8-420b-a7c9-e77f532f4d40?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:24:01 GMT + - Wed, 13 May 2020 14:28:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fcc60566-ff72-42e9-ac2d-25aeb8be2aac?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1be8ff7d-c0a8-420b-a7c9-e77f532f4d40?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3136,7 +2875,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3155,7 +2894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:02 GMT + - Wed, 13 May 2020 14:28:59 GMT expires: - '-1' pragma: @@ -3192,7 +2931,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3211,7 +2950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:24:05 GMT + - Wed, 13 May 2020 14:29:01 GMT expires: - '-1' pragma: @@ -3248,7 +2987,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3266,7 +3005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:25:08 GMT + - Wed, 13 May 2020 14:30:03 GMT expires: - '-1' pragma: @@ -3303,7 +3042,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3321,7 +3060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:12 GMT + - Wed, 13 May 2020 14:31:05 GMT expires: - '-1' pragma: @@ -3358,7 +3097,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3376,7 +3115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:15 GMT + - Wed, 13 May 2020 14:32:08 GMT expires: - '-1' pragma: @@ -3413,7 +3152,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3431,7 +3170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:17 GMT + - Wed, 13 May 2020 14:33:10 GMT expires: - '-1' pragma: @@ -3468,7 +3207,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3486,7 +3225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:20 GMT + - Wed, 13 May 2020 14:34:12 GMT expires: - '-1' pragma: @@ -3523,7 +3262,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3541,7 +3280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:21 GMT + - Wed, 13 May 2020 14:35:16 GMT expires: - '-1' pragma: @@ -3580,7 +3319,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST @@ -3592,17 +3331,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/b4d15ee3-faed-479e-b5e6-53d4693dcf99?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/234ebb30-7d45-4eda-aabe-136605e4ccd3?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:30:25 GMT + - Wed, 13 May 2020 14:35:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b4d15ee3-faed-479e-b5e6-53d4693dcf99?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/234ebb30-7d45-4eda-aabe-136605e4ccd3?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3635,7 +3374,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3653,7 +3392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:27 GMT + - Wed, 13 May 2020 14:35:22 GMT expires: - '-1' pragma: @@ -3690,7 +3429,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3708,7 +3447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:29 GMT + - Wed, 13 May 2020 14:35:24 GMT expires: - '-1' pragma: @@ -3745,7 +3484,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3763,7 +3502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:32 GMT + - Wed, 13 May 2020 14:36:26 GMT expires: - '-1' pragma: @@ -3802,7 +3541,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST @@ -3814,17 +3553,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/212d20e2-f7f9-4a7e-a4ff-3b61ee27faf8?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9edd9a51-e44a-4929-a5ab-d91f233c20dc?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:31:34 GMT + - Wed, 13 May 2020 14:36:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/212d20e2-f7f9-4a7e-a4ff-3b61ee27faf8?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9edd9a51-e44a-4929-a5ab-d91f233c20dc?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3857,7 +3596,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3875,7 +3614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:36 GMT + - Wed, 13 May 2020 14:36:32 GMT expires: - '-1' pragma: @@ -3912,7 +3651,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -3930,7 +3669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:38 GMT + - Wed, 13 May 2020 14:36:34 GMT expires: - '-1' pragma: @@ -3969,7 +3708,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST @@ -3981,17 +3720,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/f279f3c1-e64c-4df2-9981-790be218d6d6?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93b98b45-a93a-4d3d-91d3-0e9279e01115?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:31:41 GMT + - Wed, 13 May 2020 14:36:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f279f3c1-e64c-4df2-9981-790be218d6d6?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93b98b45-a93a-4d3d-91d3-0e9279e01115?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -4003,7 +3742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -4024,7 +3763,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -4042,7 +3781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:43 GMT + - Wed, 13 May 2020 14:36:38 GMT expires: - '-1' pragma: @@ -4079,7 +3818,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -4097,7 +3836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:45 GMT + - Wed, 13 May 2020 14:36:40 GMT expires: - '-1' pragma: @@ -4134,7 +3873,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -4152,7 +3891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:47 GMT + - Wed, 13 May 2020 14:37:42 GMT expires: - '-1' pragma: @@ -4191,7 +3930,7 @@ interactions: - -g -a -p -v User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: POST @@ -4203,17 +3942,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/086b14e7-2d5c-4a1d-8e69-a202705d3323?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b73e48c3-b620-41a7-b1da-9ba40e5d9e64?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 13 May 2020 11:32:51 GMT + - Wed, 13 May 2020 14:37:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/086b14e7-2d5c-4a1d-8e69-a202705d3323?api-version=2019-10-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b73e48c3-b620-41a7-b1da-9ba40e5d9e64?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml index e441a06cbe3..8c26bcb1996 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml @@ -18,29 +18,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.604262Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.0969524Z''\"","location":"westus2","properties":{"name":"cli000002","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/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ee262af2-d3e3-4c1f-a90b-10b7d34b9d2c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '451' + - '452' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:04:54 GMT + - Wed, 13 May 2020 14:12:13 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.604262Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.0969524Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -75,23 +75,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ee262af2-d3e3-4c1f-a90b-10b7d34b9d2c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7887cd-e0f0-4310-9fbe-e0eb1181fcca","name":"cc7887cd-e0f0-4310-9fbe-e0eb1181fcca","status":"Succeeded","startTime":"2020-05-13T11:04:53.5645551Z","endTime":"2020-05-13T11:04:53.6739686Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ee262af2-d3e3-4c1f-a90b-10b7d34b9d2c","name":"ee262af2-d3e3-4c1f-a90b-10b7d34b9d2c","status":"Succeeded","startTime":"2020-05-13T14:12:13.0224718Z","endTime":"2020-05-13T14:12:13.163053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:25 GMT + - Wed, 13 May 2020 14:12:44 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.6743118Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1609976Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:26 GMT + - Wed, 13 May 2020 14:12:45 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.6743118Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1609976Z'" expires: - '-1' pragma: @@ -183,14 +183,14 @@ interactions: - --resource-group -a --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A04%3A53.6743118Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A13.1609976Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -201,9 +201,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:27 GMT + - Wed, 13 May 2020 14:12:48 GMT etag: - - W/"datetime'2020-05-13T11%3A04%3A53.6743118Z'" + - W/"datetime'2020-05-13T14%3A12%3A13.1609976Z'" expires: - '-1' pragma: @@ -244,27 +244,27 @@ interactions: - --resource-group -a --tags User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A05%3A30.1842501Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A12%3A51.560281Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '477' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:05:31 GMT + - Wed, 13 May 2020 14:12:53 GMT etag: - - W/"datetime'2020-05-13T11%3A05%3A30.1842501Z'" + - W/"datetime'2020-05-13T14%3A12%3A51.560281Z'" expires: - '-1' pragma: @@ -282,7 +282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml index baa431ea26b..73af8f220e1 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml @@ -18,29 +18,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A27.5326462Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A54.6332688Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/60a43ed2-78a1-4502-8812-21516ad8db9c?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/81ab9c94-89c0-4e87-91df-7c5b77e359e3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '458' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:28 GMT + - Wed, 13 May 2020 14:14:56 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A27.5326462Z'" + - W/"datetime'2020-05-13T14%3A14%3A54.6332688Z'" expires: - '-1' pragma: @@ -75,12 +75,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60a43ed2-78a1-4502-8812-21516ad8db9c?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/81ab9c94-89c0-4e87-91df-7c5b77e359e3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/60a43ed2-78a1-4502-8812-21516ad8db9c","name":"60a43ed2-78a1-4502-8812-21516ad8db9c","status":"Succeeded","startTime":"2020-05-13T11:07:27.1184451Z","endTime":"2020-05-13T11:07:28.3217385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/81ab9c94-89c0-4e87-91df-7c5b77e359e3","name":"81ab9c94-89c0-4e87-91df-7c5b77e359e3","status":"Succeeded","startTime":"2020-05-13T14:14:54.0364002Z","endTime":"2020-05-13T14:14:55.6927798Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:59 GMT + - Wed, 13 May 2020 14:15:27 GMT expires: - '-1' pragma: @@ -128,12 +128,12 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A07%3A28.2143051Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A14%3A55.5331382Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +144,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:07:59 GMT + - Wed, 13 May 2020 14:15:27 GMT etag: - - W/"datetime'2020-05-13T11%3A07%3A28.2143051Z'" + - W/"datetime'2020-05-13T14%3A14%3A55.5331382Z'" expires: - '-1' pragma: @@ -188,19 +188,19 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A09.5471862Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A36.9591103Z''\"","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/807e34a5-e630-4ae3-ab3f-70016bf0fa8d?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0801515-6d21-4765-bab7-14b9e2859594?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -208,9 +208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:08:10 GMT + - Wed, 13 May 2020 14:15:37 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A09.5471862Z'" + - W/"datetime'2020-05-13T14%3A15%3A36.9591103Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: @@ -245,12 +245,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/807e34a5-e630-4ae3-ab3f-70016bf0fa8d?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0801515-6d21-4765-bab7-14b9e2859594?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/807e34a5-e630-4ae3-ab3f-70016bf0fa8d","name":"807e34a5-e630-4ae3-ab3f-70016bf0fa8d","status":"Succeeded","startTime":"2020-05-13T11:08:09.125015Z","endTime":"2020-05-13T11:08:10.5156841Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b0801515-6d21-4765-bab7-14b9e2859594","name":"b0801515-6d21-4765-bab7-14b9e2859594","status":"Succeeded","startTime":"2020-05-13T14:15:36.258827Z","endTime":"2020-05-13T14:15:38.1656621Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:06 GMT + - Wed, 13 May 2020 14:16:08 GMT expires: - '-1' pragma: @@ -298,12 +298,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A10.4090185Z''\"","location":"westus2stage","properties":{"poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A38.0571682Z''\"","location":"westus2stage","properties":{"poolId":"49402c37-29c2-db1f-2603-50e7ff92a47f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +314,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:06 GMT + - Wed, 13 May 2020 14:16:08 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A10.4090185Z'" + - W/"datetime'2020-05-13T14%3A15%3A38.0571682Z'" expires: - '-1' pragma: @@ -353,14 +353,14 @@ interactions: - --resource-group -a -p --tags --service-level User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A08%3A10.4090185Z''\"","location":"westus2stage","properties":{"poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A15%3A38.0571682Z''\"","location":"westus2stage","properties":{"poolId":"49402c37-29c2-db1f-2603-50e7ff92a47f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -371,9 +371,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:10 GMT + - Wed, 13 May 2020 14:16:12 GMT etag: - - W/"datetime'2020-05-13T11%3A08%3A10.4090185Z'" + - W/"datetime'2020-05-13T14%3A15%3A38.0571682Z'" expires: - '-1' pragma: @@ -415,14 +415,14 @@ interactions: - --resource-group -a -p --tags --service-level User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A09%3A14.1104826Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"1b6239db-50d2-33d1-e456-618b7a513958","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A16%3A16.9557013Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"49402c37-29c2-db1f-2603-50e7ff92a47f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context @@ -433,9 +433,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:09:16 GMT + - Wed, 13 May 2020 14:16:20 GMT etag: - - W/"datetime'2020-05-13T11%3A09%3A14.1104826Z'" + - W/"datetime'2020-05-13T14%3A16%3A16.9557013Z'" expires: - '-1' pragma: @@ -453,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml index 9f22a93723a..a5ec13613ed 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -19,7 +19,7 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -27,10 +27,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"b0690e3b-beee-4248-bc18-e856633929a8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a7ae5ba4-21de-4223-af22-a988761a31c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"57bab170-f61a-416a-b4f0-0aab706e0622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -39,7 +39,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/336b976b-ef9a-4222-97db-eea8c50823ec?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/25febda0-f6f0-4446-afe6-481c2538bdfe?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -47,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:29 GMT + - Wed, 13 May 2020 14:22:01 GMT expires: - '-1' pragma: @@ -60,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c8a3f8c-297f-44b0-8ea0-0804836d704c + - c03570c1-e857-4930-8c99-ed4681060b84 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' status: code: 201 message: Created @@ -81,9 +81,9 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/336b976b-ef9a-4222-97db-eea8c50823ec?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/25febda0-f6f0-4446-afe6-481c2538bdfe?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:34 GMT + - Wed, 13 May 2020 14:22:06 GMT expires: - '-1' pragma: @@ -112,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c124726-febc-4884-832e-bde408821e25 + - 8343afd3-7f6e-4f0c-a91a-3294a4018c47 status: code: 200 message: OK @@ -131,16 +131,16 @@ interactions: - -n --resource-group -l --address-prefix User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"2a34293b-23fb-42c7-ae67-9fd17b04ef10\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"817fb443-615d-4640-a591-1739f394291e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"57bab170-f61a-416a-b4f0-0aab706e0622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -153,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:34 GMT + - Wed, 13 May 2020 14:22:06 GMT etag: - - W/"2a34293b-23fb-42c7-ae67-9fd17b04ef10" + - W/"817fb443-615d-4640-a591-1739f394291e" expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 526b2fcd-c622-4c3c-90cf-16d5d095cfb8 + - 0a95bca8-5148-43d4-b552-1ac8c9650993 status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET @@ -199,10 +199,10 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"2a34293b-23fb-42c7-ae67-9fd17b04ef10\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"817fb443-615d-4640-a591-1739f394291e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"57bab170-f61a-416a-b4f0-0aab706e0622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -215,9 +215,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:34 GMT + - Wed, 13 May 2020 14:22:08 GMT etag: - - W/"2a34293b-23fb-42c7-ae67-9fd17b04ef10" + - W/"817fb443-615d-4640-a591-1739f394291e" expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e5e44f48-9d0c-40c9-93a7-f6ba04749735 + - 4a17128b-f57d-47e4-a47a-6790e1abcbba status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT @@ -271,20 +271,20 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4867de21-2e5f-4611-a3fd-521c51b96a3d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"57bab170-f61a-416a-b4f0-0aab706e0622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n + \ \"etag\": \"W/\\\"4867de21-2e5f-4611-a3fd-521c51b96a3d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"a9c15a84-a0d1-4f6d-a718-2abaa82ad598\\\"\",\r\n + \ \"etag\": \"W/\\\"4867de21-2e5f-4611-a3fd-521c51b96a3d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -297,7 +297,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eda961b8-ce86-44c4-b5dd-bb6c8566414e?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df5ac123-44f9-4ca6-a3ae-e2b61bde55af?api-version=2020-03-01 cache-control: - no-cache content-length: @@ -305,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:36 GMT + - Wed, 13 May 2020 14:22:09 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bf91893-7752-4398-bd8f-e3d64241ed65 + - b033114c-edf5-4232-983f-d57edfc32fad x-ms-ratelimit-remaining-subscription-writes: - '1191' status: @@ -343,9 +343,9 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eda961b8-ce86-44c4-b5dd-bb6c8566414e?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/df5ac123-44f9-4ca6-a3ae-e2b61bde55af?api-version=2020-03-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -357,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:40 GMT + - Wed, 13 May 2020 14:22:12 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1237e52-d00b-46ef-b49c-546682e8348e + - 55367314-fbd8-4ba7-bf1c-4fc08ed5058a status: code: 200 message: OK @@ -393,26 +393,26 @@ interactions: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-network/10.1.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-03-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4de20306-f1b1-4ac5-9d0c-8870148dfa3e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cf700551-16ed-4e3f-a1a0-1f369fc69886\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"57bab170-f61a-416a-b4f0-0aab706e0622\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n + \ \"etag\": \"W/\\\"4de20306-f1b1-4ac5-9d0c-8870148dfa3e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84\\\"\",\r\n + \ \"etag\": \"W/\\\"4de20306-f1b1-4ac5-9d0c-8870148dfa3e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -431,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:41 GMT + - Wed, 13 May 2020 14:22:13 GMT etag: - - W/"331af2ad-1ba3-4898-ae89-cbbfcb3c6f84" + - W/"4de20306-f1b1-4ac5-9d0c-8870148dfa3e" expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96f4f686-0817-4804-bfd9-fc952fe29c38 + - f6417cd0-34cd-43e5-a994-c989ac773f6a status: code: 200 message: OK @@ -473,29 +473,29 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A14%3A49.2523834Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A22%3A21.0976664Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","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/222c81f5-647a-4df2-9f22-17190595627a?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db889425-e7e8-46ca-beb0-9e1aa30f1da8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:14:49 GMT + - Wed, 13 May 2020 14:22:21 GMT etag: - - W/"datetime'2020-05-13T11%3A14%3A49.2523834Z'" + - W/"datetime'2020-05-13T14%3A22%3A21.0976664Z'" expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' x-powered-by: - ASP.NET status: @@ -530,23 +530,23 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/222c81f5-647a-4df2-9f22-17190595627a?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db889425-e7e8-46ca-beb0-9e1aa30f1da8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/222c81f5-647a-4df2-9f22-17190595627a","name":"222c81f5-647a-4df2-9f22-17190595627a","status":"Succeeded","startTime":"2020-05-13T11:14:48.80793Z","endTime":"2020-05-13T11:14:50.0266023Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/db889425-e7e8-46ca-beb0-9e1aa30f1da8","name":"db889425-e7e8-46ca-beb0-9e1aa30f1da8","status":"Succeeded","startTime":"2020-05-13T14:22:20.6463896Z","endTime":"2020-05-13T14:22:21.873132Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '579' + - '580' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:21 GMT + - Wed, 13 May 2020 14:22:53 GMT expires: - '-1' pragma: @@ -583,25 +583,25 @@ interactions: - -g -a -l User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T11%3A14%3A49.914025Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-05-13T14%3A22%3A21.7653147Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '457' + - '458' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:21 GMT + - Wed, 13 May 2020 14:22:54 GMT etag: - - W/"datetime'2020-05-13T11%3A14%3A49.914025Z'" + - W/"datetime'2020-05-13T14%3A22%3A21.7653147Z'" expires: - '-1' pragma: @@ -643,29 +643,29 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A15%3A30.2491614Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A23%3A04.146428Z''\"","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/82b8e163-b210-45a5-9e20-685d63a0b61f?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b1a3cdda-4a73-4a66-8c8d-42343ce6eeb3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '547' + - '546' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:15:31 GMT + - Wed, 13 May 2020 14:23:05 GMT etag: - - W/"datetime'2020-05-13T11%3A15%3A30.2491614Z'" + - W/"datetime'2020-05-13T14%3A23%3A04.146428Z'" expires: - '-1' pragma: @@ -679,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' x-powered-by: - ASP.NET status: @@ -700,12 +700,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/82b8e163-b210-45a5-9e20-685d63a0b61f?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b1a3cdda-4a73-4a66-8c8d-42343ce6eeb3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/82b8e163-b210-45a5-9e20-685d63a0b61f","name":"82b8e163-b210-45a5-9e20-685d63a0b61f","status":"Succeeded","startTime":"2020-05-13T11:15:29.7835329Z","endTime":"2020-05-13T11:15:31.2174656Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b1a3cdda-4a73-4a66-8c8d-42343ce6eeb3","name":"b1a3cdda-4a73-4a66-8c8d-42343ce6eeb3","status":"Succeeded","startTime":"2020-05-13T14:23:03.7001032Z","endTime":"2020-05-13T14:23:05.3252264Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -716,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:02 GMT + - Wed, 13 May 2020 14:23:36 GMT expires: - '-1' pragma: @@ -753,12 +753,12 @@ interactions: - -g -a -p -l --service-level --size User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T11%3A15%3A31.1150028Z''\"","location":"westus2stage","properties":{"poolId":"9e4dbde5-67fc-dc32-12d8-4de25f51512f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-05-13T14%3A23%3A05.1143656Z''\"","location":"westus2stage","properties":{"poolId":"6c1c0fbd-5450-ac46-51da-6e749b885329","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -769,9 +769,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:02 GMT + - Wed, 13 May 2020 14:23:37 GMT etag: - - W/"datetime'2020-05-13T11%3A15%3A31.1150028Z'" + - W/"datetime'2020-05-13T14%3A23%3A05.1143656Z'" expires: - '-1' pragma: @@ -814,19 +814,19 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A16%3A11.9926718Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A23%3A47.1151136Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","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/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -834,9 +834,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:16:13 GMT + - Wed, 13 May 2020 14:23:48 GMT etag: - - W/"datetime'2020-05-13T11%3A16%3A11.9926718Z'" + - W/"datetime'2020-05-13T14%3A23%3A47.1151136Z'" expires: - '-1' pragma: @@ -850,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -872,1092 +872,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:16: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:17: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:17: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:18: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:18: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:19: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:19: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:20: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:20: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:21: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:21: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:22: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:22: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:23: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:23: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:24: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:24: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:25: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '642' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 May 2020 11:26: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 - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1968,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:26:53 GMT + - Wed, 13 May 2020 14:24:19 GMT expires: - '-1' pragma: @@ -2006,12 +926,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2022,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:23 GMT + - Wed, 13 May 2020 14:24:50 GMT expires: - '-1' pragma: @@ -2060,12 +980,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2076,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:27:53 GMT + - Wed, 13 May 2020 14:25:20 GMT expires: - '-1' pragma: @@ -2114,12 +1034,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2130,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:23 GMT + - Wed, 13 May 2020 14:25:50 GMT expires: - '-1' pragma: @@ -2168,12 +1088,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2184,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:28:54 GMT + - Wed, 13 May 2020 14:26:21 GMT expires: - '-1' pragma: @@ -2222,12 +1142,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2238,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:24 GMT + - Wed, 13 May 2020 14:26:51 GMT expires: - '-1' pragma: @@ -2276,12 +1196,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2292,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:29:55 GMT + - Wed, 13 May 2020 14:27:22 GMT expires: - '-1' pragma: @@ -2330,12 +1250,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2346,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:26 GMT + - Wed, 13 May 2020 14:27:52 GMT expires: - '-1' pragma: @@ -2384,12 +1304,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2400,7 +1320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:30:57 GMT + - Wed, 13 May 2020 14:28:22 GMT expires: - '-1' pragma: @@ -2438,12 +1358,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2454,7 +1374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:27 GMT + - Wed, 13 May 2020 14:28:53 GMT expires: - '-1' pragma: @@ -2492,12 +1412,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Creating","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Creating","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -2508,7 +1428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:31:57 GMT + - Wed, 13 May 2020 14:29:23 GMT expires: - '-1' pragma: @@ -2546,23 +1466,23 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8198e5a0-3d7d-4e57-89da-a1507e71b3b7","name":"8198e5a0-3d7d-4e57-89da-a1507e71b3b7","status":"Succeeded","startTime":"2020-05-13T11:16:11.5657683Z","endTime":"2020-05-13T11:32:19.1147517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9bc5e87a-ff6f-4a78-ae29-bac26984adea","name":"9bc5e87a-ff6f-4a78-ae29-bac26984adea","status":"Succeeded","startTime":"2020-05-13T14:23:46.6024308Z","endTime":"2020-05-13T14:29:31.610047Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '652' content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:28 GMT + - Wed, 13 May 2020 14:29:54 GMT expires: - '-1' pragma: @@ -2600,12 +1520,12 @@ interactions: --usage-threshold --file-path --vnet --subnet User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A18.9252895Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A29%3A31.4431579Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_3edf63ae","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -2616,9 +1536,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:28 GMT + - Wed, 13 May 2020 14:29:54 GMT etag: - - W/"datetime'2020-05-13T11%3A32%3A18.9252895Z'" + - W/"datetime'2020-05-13T14%3A29%3A31.4431579Z'" expires: - '-1' pragma: @@ -2655,14 +1575,14 @@ interactions: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A18.9252895Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A29%3A31.4431579Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_3edf63ae","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -2673,9 +1593,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:32 GMT + - Wed, 13 May 2020 14:29:56 GMT etag: - - W/"datetime'2020-05-13T11%3A32%3A18.9252895Z'" + - W/"datetime'2020-05-13T14%3A29%3A31.4431579Z'" expires: - '-1' pragma: @@ -2717,14 +1637,14 @@ interactions: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.4.0 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.5.1 accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T11%3A32%3A37.2380633Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"db00b8ef-d668-0b47-4302-1a06a08e1f38","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_f935f670","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-05-13T14%3A30%3A01.7725813Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"provisioningState":"Succeeded","fileSystemId":"77af4f9b-661c-aa6c-1e11-d5e89b7ebc3a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","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_fb0467dd8e8011e9a7f006ddec9cd511_3edf63ae","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -2735,9 +1655,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 May 2020 11:32:43 GMT + - Wed, 13 May 2020 14:30:07 GMT etag: - - W/"datetime'2020-05-13T11%3A32%3A37.2380633Z'" + - W/"datetime'2020-05-13T14%3A30%3A01.7725813Z'" expires: - '-1' pragma: @@ -2755,7 +1675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1187' x-powered-by: - ASP.NET status: From 6baf17674a02e59b84050f9e4edd0ce0b6cb9cf8 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Wed, 13 May 2020 17:29:48 +0000 Subject: [PATCH 3/7] Fix linter issues --- .../azure/cli/command_modules/netappfiles/custom.py | 2 +- .../netappfiles/tests/latest/test_snapshot_commands.py | 6 ++---- .../netappfiles/tests/latest/test_volume_commands.py | 6 +++--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py index 00f73cbaf34..e6c64a305d6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -149,7 +149,7 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr volume_type=volume_type, data_protection=data_protection, tags=tags, - snapshot_id = snapshot_id) + snapshot_id=snapshot_id) return client.create_or_update(body, resource_group_name, account_name, pool_name, volume_name) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py index 535517fb9fe..d4e765ca18e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py @@ -1,8 +1,7 @@ -33# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- - from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer POOL_DEFAULT = "--service-level 'Premium' --size 4" @@ -26,7 +25,7 @@ def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None, sn vnet_name = self.create_random_name(prefix='cli-vnet-', length=24) file_path = volume_name1 # creation_token vnet_name = "cli-vnet-lefr-02" - subnet_name = "cli-subnet-lefr-02" + subnet_name = "cli-subnet-lefr-02" tag = "--tags %s" % tags if tags is not None else "" if not volume_only: @@ -86,7 +85,6 @@ def test_create_volume_from_snapshot(self): restored_volume = self.create_volume(account_name, pool_name, restored_volume_name, rg, snapshot_id=snapshot["snapshotId"], volume_only=volume_only) assert restored_volume['name'] == account_name + '/' + pool_name + '/' + restored_volume_name - @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_snapshot_') def test_list_snapshots(self): account_name = self.create_random_name(prefix='cli-acc-', length=24) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py index 00a2da462f5..e2fc55abb89 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py @@ -48,12 +48,12 @@ def wait_for_replication_status(self, target_state, rg_r, account_name_r, pool_n # python isn't good at do-while loops but loop until we get the target state attempts = 0 replication_status = self.cmd("az netappfiles volume replication status -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)).get_output_in_json() - + while attempts < 10: attempts += 1 replication_status = self.cmd("az netappfiles volume replication status -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)).get_output_in_json() - if (replication_status['mirrorState'] == target_state ): - break + if(replication_status['mirrorState'] == target_state): + break if self.is_live or self.in_recording: time.sleep(60) From f5914d5444a2f5a8af66b39da115333eb32afc8b Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Wed, 13 May 2020 23:37:08 +0000 Subject: [PATCH 4/7] Update help and history notes --- src/azure-cli/HISTORY.rst | 2 +- src/azure-cli/azure/cli/command_modules/netappfiles/_help.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index d3b152c3829..f2ba5b3257f 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -313,7 +313,7 @@ Release History * Fix IcM179210086: unable to create custom metric alert for their Application Insights metric **NetAppFiles** - +* az volume create: Adds snapshot-id as a parameter to create volume this will allow users to create a volume from existing snapshot. * az volume create: Allow data protection volumes adding replication operations: approve, suspend, resume, status, remove **Network** diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py index f4bac49c017..5216805728d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -348,6 +348,8 @@ short-summary: The replication schedule, e.g. "_10minutely, hourly, daily, weekly, monthly" - name: --tags short-summary: Space-separated tags in `key[=value]` format + - name: --snapshot_id + short-summary: Create a volume created from this snapshot. UUID v4 or resource identifier used to identify the Snapshot. example snapshot_id "9760acf5-4638-11e7-9bdb-020073ca3333" examples: - name: Create an ANF volume text: > From e050fe54d8a2f039cda612dcd7892653043ce926 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 14 May 2020 09:05:53 +0000 Subject: [PATCH 5/7] Removed extra file and comment in history --- package-lock.json | 3 --- src/azure-cli/HISTORY.rst | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 48e341a0954..00000000000 --- a/package-lock.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "lockfileVersion": 1 -} diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index f2ba5b3257f..6eaa77d0d88 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -313,7 +313,7 @@ Release History * Fix IcM179210086: unable to create custom metric alert for their Application Insights metric **NetAppFiles** -* az volume create: Adds snapshot-id as a parameter to create volume this will allow users to create a volume from existing snapshot. + * az volume create: Allow data protection volumes adding replication operations: approve, suspend, resume, status, remove **Network** @@ -639,7 +639,7 @@ Release History * Update error details, update default application template and prompt message. * Support app creation/update with the new sku name ST0, ST1, ST2. -**Key Vault** +**Key Vault** * Add a new command `az keyvault key download` for downloading keys. From a740c2667a983ce9718d71f903cf7fe182bf449f Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 14 May 2020 09:24:12 +0000 Subject: [PATCH 6/7] Linter issue w. parameter name --- src/azure-cli/azure/cli/command_modules/netappfiles/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py index 5216805728d..a4701462fff 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -348,7 +348,7 @@ short-summary: The replication schedule, e.g. "_10minutely, hourly, daily, weekly, monthly" - name: --tags short-summary: Space-separated tags in `key[=value]` format - - name: --snapshot_id + - name: --snapshot-id short-summary: Create a volume created from this snapshot. UUID v4 or resource identifier used to identify the Snapshot. example snapshot_id "9760acf5-4638-11e7-9bdb-020073ca3333" examples: - name: Create an ANF volume From d13f4174081c258998853d354d4972d6c6afc7a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Au=C3=B0unn?= Date: Fri, 15 May 2020 08:56:28 +0000 Subject: [PATCH 7/7] Update src/azure-cli/HISTORY.rst Co-authored-by: Jianhui Harold --- src/azure-cli/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 6eaa77d0d88..d3b152c3829 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -639,7 +639,7 @@ Release History * Update error details, update default application template and prompt message. * Support app creation/update with the new sku name ST0, ST1, ST2. -**Key Vault** +**Key Vault** * Add a new command `az keyvault key download` for downloading keys.