diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 05fb55d7e63..cc194821ba2 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -73,6 +73,7 @@ Release History **NetAppFiles** +* Volume create/update: Added new argument --protocol-types * Initial version relating to the R4 version of the RP. **Profile** @@ -470,4 +471,4 @@ azure-cli-vm 0.1.0b11 (2016-12-12) +++++++++++++++++++++ -* Preview release. \ No newline at end of file +* Preview release. 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 fb74f49de50..f6b9b2bd2b0 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -254,12 +254,14 @@ short-summary: The vnet for the volume - name: --subnet short-summary: The subnet. If omitted 'default' will be used + - name: --protocol-types + short-summary: Space seperated list of protocols that the volume can use - name: --tags short-summary: Space-separated tags in `key[=value]` format examples: - name: Create an ANF volume text: > - az netappfiles volume create -g mygroup --account-name myaccname --pool-name mypoolname --name myvolname -l westus2 --service-level premium --usage-threshold 100 --creation-token "unique-file-path" --vnet myvnet --subnet mysubnet + az netappfiles volume create -g mygroup --account-name myaccname --pool-name mypoolname --name myvolname -l westus2 --service-level premium --usage-threshold 100 --creation-token "unique-file-path" --vnet myvnet --subnet mysubnet --protocol-types NFSv3 NFSv4 """ helps['netappfiles volume update'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py b/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py index cdc18e09f1d..f9017fb6cb8 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py @@ -16,6 +16,7 @@ def load_arguments(self, _): with self.argument_context('netappfiles') as c: c.argument('resource_group', resource_group_name_type) c.argument('tags', arg_type=tags_type) + c.argument('protocol_types', arg_type=tags_type) c.argument('account_name', account_name_type) c.argument('pool_name', pool_name_type) c.argument('volume_name', volume_name_type) 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 118d5275973..0a01c9ef660 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -88,7 +88,7 @@ def patch_pool(cmd, instance, size=None, service_level=None, tags=None): return body -def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, creation_token, usage_threshold, vnet, subnet='default', service_level=None, tags=None): +def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, creation_token, usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, tags=None): subs_id = get_subscription_id(cmd.cli_ctx) subnet_id = "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Network/virtualNetworks/%s/subnets/%s" % (subs_id, resource_group_name, vnet, subnet) body = Volume( @@ -97,16 +97,18 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr service_level=service_level, location=location, subnet_id=subnet_id, + protocol_types=protocol_types, tags=tags) return client.create_or_update(body, resource_group_name, account_name, pool_name, volume_name) # volume update -def patch_volume(cmd, instance, usage_threshold=None, service_level=None, tags=None): +def patch_volume(cmd, instance, usage_threshold=None, service_level=None, protocol_types=None, tags=None): params = VolumePatch( usage_threshold=None if usage_threshold is None else int(usage_threshold) * gib_scale, service_level=service_level, + protocol_types=protocol_types, tags=tags) _update_mapper(instance, params, ['service_level', 'usage_threshold', 'tags']) return params 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 e16d51d9fda..93db972439d 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,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:17:00Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001","name":"cli_tests_rg_000001","location":"westus","tags":{"date":"2019-05-31T16:17:00Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:17:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '57' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.4430405Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.9314225Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/9a29c81c-8cad-4cc9-bcf8-8990632771d0?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a2fb8ee0-96d7-4503-ae12-e8210b8fd467?api-version=2019-06-01 cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:12 GMT + - Fri, 12 Jul 2019 13:54:00 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.4430405Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.9314225Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/9a29c81c-8cad-4cc9-bcf8-8990632771d0?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a2fb8ee0-96d7-4503-ae12-e8210b8fd467?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/9a29c81c-8cad-4cc9-bcf8-8990632771d0","name":"9a29c81c-8cad-4cc9-bcf8-8990632771d0","status":"Succeeded","startTime":"2019-05-31T16:17:11.3090831Z","endTime":"2019-05-31T16:17:11.5126667Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a2fb8ee0-96d7-4503-ae12-e8210b8fd467","name":"a2fb8ee0-96d7-4503-ae12-e8210b8fd467","status":"Succeeded","startTime":"2019-07-12T13:54:00.8157799Z","endTime":"2019-07-12T13:54:01.0657842Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:44 GMT + - Fri, 12 Jul 2019 13:54:34 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.634179Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A01.0575108Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '477' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:46 GMT + - Fri, 12 Jul 2019 13:54:35 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.634179Z'" + - W/"datetime'2019-07-12T13%3A54%3A01.0575108Z'" expires: - '-1' pragma: @@ -232,28 +182,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.634179Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A01.0575108Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '477' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:48 GMT + - Fri, 12 Jul 2019 13:54:36 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.634179Z'" + - W/"datetime'2019-07-12T13%3A54%3A01.0575108Z'" expires: - '-1' pragma: @@ -295,28 +245,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A52.4325808Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"c1eefa33-5831-2589-8b6c-20257739b118","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A40.154821Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"username":"aduser","password":"aduser","domain":"westcentralus","dns":"1.2.3.4","smbServerName":"SMBSERVER"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '735' + - '616' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:51 GMT + - Fri, 12 Jul 2019 13:54:40 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A52.4325808Z'" + - W/"datetime'2019-07-12T13%3A54%3A40.154821Z'" expires: - '-1' pragma: @@ -354,28 +304,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A52.4325808Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"c1eefa33-5831-2589-8b6c-20257739b118","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A40.3299428Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"username":"aduser","password":"aduser","domain":"westcentralus","dns":"1.2.3.4","smbServerName":"SMBSERVER"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '735' + - '617' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:53 GMT + - Fri, 12 Jul 2019 13:54:42 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A52.4325808Z'" + - W/"datetime'2019-07-12T13%3A54%3A40.3299428Z'" expires: - '-1' pragma: @@ -411,28 +361,28 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A52.4325808Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"c1eefa33-5831-2589-8b6c-20257739b118","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A40.3299428Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"username":"aduser","password":"aduser","domain":"westcentralus","dns":"1.2.3.4","smbServerName":"SMBSERVER"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '735' + - '617' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:57 GMT + - Fri, 12 Jul 2019 13:54:43 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A52.4325808Z'" + - W/"datetime'2019-07-12T13%3A54%3A40.3299428Z'" expires: - '-1' pragma: @@ -455,8 +405,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"activeDirectories": []}, "location": - "eastus2", "tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"properties": {"activeDirectories": [{"username": "aduser", + "domain": "westcentralus", "password": "aduser", "dns": "1.2.3.4", "smbServerName": + "SMBSERVER"}]}, "location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -467,34 +418,34 @@ interactions: Connection: - keep-alive Content-Length: - - '92' + - '217' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --active-directory User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A59.1864489Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A47.5449808Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","activeDirectories":[{"username":"aduser","password":"aduser","domain":"westcentralus","dns":"1.2.3.4","smbServerName":"SMBSERVER"}],"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '617' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:59 GMT + - Fri, 12 Jul 2019 13:54:47 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A59.1864489Z'" + - W/"datetime'2019-07-12T13%3A54%3A47.5449808Z'" expires: - '-1' pragma: @@ -518,51 +469,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:18:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHOjVGQVBJQVVWWVJBN0IySkgzN0ZRVUdMWERZVE9GWHxEM0I0RjY0QjVCMTc3NzEzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 da431580c65..50397ae612b 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,57 +1,70 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:17:00Z", - "product": "azurecli", "cause": "automation"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1", + "Tag2": "Value2"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group create + - netappfiles account create Connection: - keep-alive Content-Length: - - '110' + - '75' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --location --name --tag + - --resource-group --account-name -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001","name":"cli_tests_rg_000001","location":"westus","tags":{"date":"2019-05-31T16:17:00Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"error":{"code":"InternalServerError","message":"Encountered + internal server error. Please try again."}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache + connection: + - close content-length: - - '384' + - '105' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:05 GMT + - Fri, 12 Jul 2019 13: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 x-content-type-options: - nosniff + x-ms-failure-cause: + - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-powered-by: + - ASP.NET status: - code: 201 - message: Created + code: 500 + message: Internal Server Error - request: - body: !!python/unicode '{"location": "eastus2", "tags": {"Tag1": "Value1", "Tag2": - "Value2"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1", + "Tag2": "Value2"}}' headers: Accept: - application/json @@ -62,36 +75,36 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '75' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A10.9927153Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A04.2937688Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/1affb441-f8a2-4198-8a7a-95022b1d558f?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d59d46d4-68c4-4fcb-ad26-55799cce0c53?api-version=2019-06-01 cache-control: - no-cache content-length: - - '494' + - '500' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:11 GMT + - Fri, 12 Jul 2019 13:54:05 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A10.9927153Z'" + - W/"datetime'2019-07-12T13%3A54%3A04.2937688Z'" expires: - '-1' pragma: @@ -105,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -125,24 +138,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/1affb441-f8a2-4198-8a7a-95022b1d558f?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d59d46d4-68c4-4fcb-ad26-55799cce0c53?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/1affb441-f8a2-4198-8a7a-95022b1d558f","name":"1affb441-f8a2-4198-8a7a-95022b1d558f","status":"Succeeded","startTime":"2019-05-31T16:17:10.8402739Z","endTime":"2019-05-31T16:17:11.0590519Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d59d46d4-68c4-4fcb-ad26-55799cce0c53","name":"d59d46d4-68c4-4fcb-ad26-55799cce0c53","status":"Succeeded","startTime":"2019-07-12T13:54:04.1681919Z","endTime":"2019-07-12T13:54:04.4339452Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:44 GMT + - Fri, 12 Jul 2019 13:54:38 GMT expires: - '-1' pragma: @@ -178,26 +191,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.1828531Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A04.4218584Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '494' + - '500' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:46 GMT + - Fri, 12 Jul 2019 13:54:39 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.1828531Z'" + - W/"datetime'2019-07-12T13%3A54%3A04.4218584Z'" expires: - '-1' pragma: @@ -233,26 +246,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.1828531Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A04.4218584Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '506' + - '512' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:49 GMT + - Fri, 12 Jul 2019 13:54:40 GMT expires: - '-1' pragma: @@ -290,12 +303,12 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -303,17 +316,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/410256e8-46c0-4e98-8cff-92d2ddc55b86?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28c7b085-64da-446e-8685-144099d579ed?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:17:52 GMT + - Fri, 12 Jul 2019 13:54:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/410256e8-46c0-4e98-8cff-92d2ddc55b86?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28c7b085-64da-446e-8685-144099d579ed?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -345,24 +358,24 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/410256e8-46c0-4e98-8cff-92d2ddc55b86?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28c7b085-64da-446e-8685-144099d579ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/410256e8-46c0-4e98-8cff-92d2ddc55b86","name":"410256e8-46c0-4e98-8cff-92d2ddc55b86","status":"Succeeded","startTime":"2019-05-31T16:17:53.0523949Z","endTime":"2019-05-31T16:17:53.2086632Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28c7b085-64da-446e-8685-144099d579ed","name":"28c7b085-64da-446e-8685-144099d579ed","status":"Succeeded","startTime":"2019-07-12T13:54:43.9002594Z","endTime":"2019-07-12T13:54:44.0721371Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:24 GMT + - Fri, 12 Jul 2019 13:55:14 GMT expires: - '-1' pragma: @@ -398,16 +411,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: @@ -415,23 +430,31 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:26 GMT + - Fri, 12 Jul 2019 13:55: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: !!python/unicode '{"location": "eastus2", "tags": {"Tag1": "Value1", "Tag2": - "Value2"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1", + "Tag2": "Value2"}}' headers: Accept: - application/json @@ -442,36 +465,36 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '75' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A32.3393016Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A22.3853221Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6dfd67cc-5a64-45fe-a258-e21d051ad53e?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d510b649-e260-4199-ae07-fa1ead50c51a?api-version=2019-06-01 cache-control: - no-cache content-length: - - '494' + - '500' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:32 GMT + - Fri, 12 Jul 2019 13:55:22 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A32.3393016Z'" + - W/"datetime'2019-07-12T13%3A55%3A22.3853221Z'" expires: - '-1' pragma: @@ -485,7 +508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -505,24 +528,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6dfd67cc-5a64-45fe-a258-e21d051ad53e?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d510b649-e260-4199-ae07-fa1ead50c51a?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6dfd67cc-5a64-45fe-a258-e21d051ad53e","name":"6dfd67cc-5a64-45fe-a258-e21d051ad53e","status":"Succeeded","startTime":"2019-05-31T16:18:32.2116089Z","endTime":"2019-05-31T16:18:32.4002184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d510b649-e260-4199-ae07-fa1ead50c51a","name":"d510b649-e260-4199-ae07-fa1ead50c51a","status":"Succeeded","startTime":"2019-07-12T13:55:22.2574762Z","endTime":"2019-07-12T13:55:22.6029394Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:05 GMT + - Fri, 12 Jul 2019 13:55:54 GMT expires: - '-1' pragma: @@ -558,26 +581,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A32.5374438Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A22.6004726Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '494' + - '500' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:06 GMT + - Fri, 12 Jul 2019 13:55:55 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A32.5374438Z'" + - W/"datetime'2019-07-12T13%3A55%3A22.6004726Z'" expires: - '-1' pragma: @@ -613,26 +636,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A32.5374438Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A22.6004726Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '506' + - '512' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:08 GMT + - Fri, 12 Jul 2019 13:55:57 GMT expires: - '-1' pragma: @@ -670,12 +693,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -683,17 +706,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ac3e2bff-5346-4bf9-a83b-bdb0e9734725?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3eeaf18c-67a9-4ec1-9558-9e1513721d92?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:19:10 GMT + - Fri, 12 Jul 2019 13:55:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ac3e2bff-5346-4bf9-a83b-bdb0e9734725?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3eeaf18c-67a9-4ec1-9558-9e1513721d92?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -725,24 +748,24 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ac3e2bff-5346-4bf9-a83b-bdb0e9734725?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3eeaf18c-67a9-4ec1-9558-9e1513721d92?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ac3e2bff-5346-4bf9-a83b-bdb0e9734725","name":"ac3e2bff-5346-4bf9-a83b-bdb0e9734725","status":"Succeeded","startTime":"2019-05-31T16:19:10.8612635Z","endTime":"2019-05-31T16:19:11.0175317Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3eeaf18c-67a9-4ec1-9558-9e1513721d92","name":"3eeaf18c-67a9-4ec1-9558-9e1513721d92","status":"Succeeded","startTime":"2019-07-12T13:56:00.1493414Z","endTime":"2019-07-12T13:56:00.3212221Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:41 GMT + - Fri, 12 Jul 2019 13:56:32 GMT expires: - '-1' pragma: @@ -778,16 +801,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: @@ -795,65 +820,26 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:42 GMT + - Fri, 12 Jul 2019 13:56: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: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:19:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHOjVGRDdRSE1YQ0NUTVFEN0JGSDJQUlZYM1JHQkNKTnwwQkZFODRGRjJCMkJGQzhELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted version: 1 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 49ab966a19e..14aad107002 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:20:02Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-05-31T16:20:02Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:20:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A11.247107Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.8684544Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/64d4a6d9-e3e2-4323-9d1e-dc7fc1afeddc?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7386b51f-3b83-463d-8c93-fa42a825a854?api-version=2019-06-01 cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:11 GMT + - Fri, 12 Jul 2019 12:50:52 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A11.247107Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.8684544Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/64d4a6d9-e3e2-4323-9d1e-dc7fc1afeddc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7386b51f-3b83-463d-8c93-fa42a825a854?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/64d4a6d9-e3e2-4323-9d1e-dc7fc1afeddc","name":"64d4a6d9-e3e2-4323-9d1e-dc7fc1afeddc","status":"Succeeded","startTime":"2019-05-31T16:20:11.1266652Z","endTime":"2019-05-31T16:20:11.3142232Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7386b51f-3b83-463d-8c93-fa42a825a854","name":"7386b51f-3b83-463d-8c93-fa42a825a854","status":"Succeeded","startTime":"2019-07-12T12:50:51.7370494Z","endTime":"2019-07-12T12:50:52.0027007Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:43 GMT + - Fri, 12 Jul 2019 12:51:25 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A11.4382434Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.9955437Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:45 GMT + - Fri, 12 Jul 2019 12:51:27 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A11.4382434Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.9955437Z'" expires: - '-1' pragma: @@ -220,7 +170,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -231,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '141' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-05-31T16%3A20%3A52.7279474Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A51%3A31.7603232Z''\"","location":"westcentralus","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/eastus2/operationResults/5cce400a-9c36-462b-acff-370ff69bb424?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7a93f259-f38a-44c7-bd9f-ddf35f95a5de?api-version=2019-06-01 cache-control: - no-cache content-length: - - '583' + - '589' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:53 GMT + - Fri, 12 Jul 2019 12:51:31 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A52.7279474Z'" + - W/"datetime'2019-07-12T12%3A51%3A31.7603232Z'" expires: - '-1' pragma: @@ -274,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -294,24 +244,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5cce400a-9c36-462b-acff-370ff69bb424?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7a93f259-f38a-44c7-bd9f-ddf35f95a5de?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5cce400a-9c36-462b-acff-370ff69bb424","name":"5cce400a-9c36-462b-acff-370ff69bb424","status":"Succeeded","startTime":"2019-05-31T16:20:52.5812347Z","endTime":"2019-05-31T16:20:53.0684917Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7a93f259-f38a-44c7-bd9f-ddf35f95a5de","name":"7a93f259-f38a-44c7-bd9f-ddf35f95a5de","status":"Succeeded","startTime":"2019-07-12T12:51:31.6260822Z","endTime":"2019-07-12T12:51:32.2042189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:25 GMT + - Fri, 12 Jul 2019 12:52:02 GMT expires: - '-1' pragma: @@ -347,26 +297,26 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-05-31T16%3A20%3A53.1472503Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"b4934e3c-fd8a-d4d3-96b0-653d94c3eb24","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A51%3A32.2046324Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"95239e7f-c399-943e-a70e-cf190038461a","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' + - '697' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:28 GMT + - Fri, 12 Jul 2019 12:52:04 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A53.1472503Z'" + - W/"datetime'2019-07-12T12%3A51%3A32.2046324Z'" expires: - '-1' pragma: @@ -402,26 +352,26 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-05-31T16%3A20%3A53.1472503Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"b4934e3c-fd8a-d4d3-96b0-653d94c3eb24","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A51%3A32.2046324Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"95239e7f-c399-943e-a70e-cf190038461a","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: - - '703' + - '709' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:31 GMT + - Fri, 12 Jul 2019 12:52:05 GMT expires: - '-1' pragma: @@ -459,12 +409,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -472,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/eastus2/operationResults/71dee8dc-c781-49cb-aeb4-36b2e6dc568f?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f1c54b95-28c6-4461-b9b9-7329acfa2f7c?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:21:33 GMT + - Fri, 12 Jul 2019 12:52:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/71dee8dc-c781-49cb-aeb4-36b2e6dc568f?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f1c54b95-28c6-4461-b9b9-7329acfa2f7c?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -494,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-powered-by: - ASP.NET status: @@ -514,24 +464,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/71dee8dc-c781-49cb-aeb4-36b2e6dc568f?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f1c54b95-28c6-4461-b9b9-7329acfa2f7c?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/71dee8dc-c781-49cb-aeb4-36b2e6dc568f","name":"71dee8dc-c781-49cb-aeb4-36b2e6dc568f","status":"Succeeded","startTime":"2019-05-31T16:21:34.3021535Z","endTime":"2019-05-31T16:21:34.5208648Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f1c54b95-28c6-4461-b9b9-7329acfa2f7c","name":"f1c54b95-28c6-4461-b9b9-7329acfa2f7c","status":"Succeeded","startTime":"2019-07-12T12:52:08.7679154Z","endTime":"2019-07-12T12:52:09.1429221Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:22:07 GMT + - Fri, 12 Jul 2019 12:52:39 GMT expires: - '-1' pragma: @@ -567,12 +517,12 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' @@ -586,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:22:10 GMT + - Fri, 12 Jul 2019 12:52:42 GMT expires: - '-1' pragma: @@ -610,7 +560,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -621,36 +571,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '141' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-05-31T16%3A22%3A15.6966133Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A52%3A46.1823029Z''\"","location":"westcentralus","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/eastus2/operationResults/2b6ca792-7029-4e42-8a92-26a687b6f6f5?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5e123fd0-365a-4389-af9c-8bb6a6871c55?api-version=2019-06-01 cache-control: - no-cache content-length: - - '583' + - '589' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:22:16 GMT + - Fri, 12 Jul 2019 12:52:46 GMT etag: - - W/"datetime'2019-05-31T16%3A22%3A15.6966133Z'" + - W/"datetime'2019-07-12T12%3A52%3A46.1823029Z'" expires: - '-1' pragma: @@ -664,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -684,24 +634,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/2b6ca792-7029-4e42-8a92-26a687b6f6f5?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5e123fd0-365a-4389-af9c-8bb6a6871c55?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/2b6ca792-7029-4e42-8a92-26a687b6f6f5","name":"2b6ca792-7029-4e42-8a92-26a687b6f6f5","status":"Succeeded","startTime":"2019-05-31T16:22:15.5435411Z","endTime":"2019-05-31T16:22:16.0133935Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5e123fd0-365a-4389-af9c-8bb6a6871c55","name":"5e123fd0-365a-4389-af9c-8bb6a6871c55","status":"Succeeded","startTime":"2019-07-12T12:52:46.0388937Z","endTime":"2019-07-12T12:52:46.5748248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:22:47 GMT + - Fri, 12 Jul 2019 12:53:19 GMT expires: - '-1' pragma: @@ -737,26 +687,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-05-31T16%3A22%3A16.0878934Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"f27bd4bd-9690-1c5e-4a08-2d2d1adf6dff","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A52%3A46.5715761Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e5cff171-bb45-7302-ae1b-dd0a8080e979","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' + - '697' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:22:50 GMT + - Fri, 12 Jul 2019 12:53:21 GMT etag: - - W/"datetime'2019-05-31T16%3A22%3A16.0878934Z'" + - W/"datetime'2019-07-12T12%3A52%3A46.5715761Z'" expires: - '-1' pragma: @@ -794,12 +744,12 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -807,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/eastus2/operationResults/4dc041b0-8889-49d4-83af-19a95ad95479?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/458815fb-31b1-4b74-aa61-935ba52add6a?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:22:55 GMT + - Fri, 12 Jul 2019 12:53:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4dc041b0-8889-49d4-83af-19a95ad95479?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/458815fb-31b1-4b74-aa61-935ba52add6a?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -849,24 +799,24 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4dc041b0-8889-49d4-83af-19a95ad95479?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/458815fb-31b1-4b74-aa61-935ba52add6a?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4dc041b0-8889-49d4-83af-19a95ad95479","name":"4dc041b0-8889-49d4-83af-19a95ad95479","status":"Succeeded","startTime":"2019-05-31T16:22:55.3714364Z","endTime":"2019-05-31T16:22:55.5901503Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/458815fb-31b1-4b74-aa61-935ba52add6a","name":"458815fb-31b1-4b74-aa61-935ba52add6a","status":"Succeeded","startTime":"2019-07-12T12:53:26.1775704Z","endTime":"2019-07-12T12:53:26.7556961Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:23:29 GMT + - Fri, 12 Jul 2019 12:53:58 GMT expires: - '-1' pragma: @@ -902,12 +852,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' @@ -921,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:23:33 GMT + - Fri, 12 Jul 2019 12:54:01 GMT expires: - '-1' pragma: @@ -943,51 +893,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:23:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHRksyQkRBWlA1RURQUEVBV1ZCTjROR1hWTVlTV1UzQnwwRDhFOTk0QUY3ODMzNUNDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted version: 1 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 500b278f8bb..be9f1f31b9b 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T16:19:06Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"date":"2019-06-04T16:19:06Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:19:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '124' + - '130' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"8aec942c-061d-450e-a576-e245f03f45de\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"62c0558d-7748-4c29-8a4b-48be1756db8d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"ea9c7e96-5fc4-4301-9b86-d93b261a9181\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"3a0a3386-6265-4aed-98bf-50feb80604f0\"\ ,\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\":\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8c6677c0-ee32-4037-93fc-d51c08f1a739?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e729a060-080a-400a-987a-34596da1d791?api-version=2019-04-01 cache-control: - no-cache content-length: - - '789' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:42 GMT + - Fri, 12 Jul 2019 10:28:17 GMT expires: - '-1' pragma: @@ -109,8 +59,10 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a8e3690e-3411-429b-bed0-1f87a3e8cd37 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8c6677c0-ee32-4037-93fc-d51c08f1a739?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e729a060-080a-400a-987a-34596da1d791?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:46 GMT + - Fri, 12 Jul 2019 10:28:21 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 080a5e8a-98f4-46ee-9942-37c8a42e5ceb status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"e64de83a-21d3-468a-aba6-299e6f0bbd21\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"bc9a3347-c19e-4f9e-a40d-5ca82339d585\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ea9c7e96-5fc4-4301-9b86-d93b261a9181\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3a0a3386-6265-4aed-98bf-50feb80604f0\"\ ,\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\":\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:46 GMT + - Fri, 12 Jul 2019 10:28:22 GMT etag: - - W/"e64de83a-21d3-468a-aba6-299e6f0bbd21" + - W/"bc9a3347-c19e-4f9e-a40d-5ca82339d585" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - c12a6534-34c5-4caa-8960-8ab9910388ae status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"e64de83a-21d3-468a-aba6-299e6f0bbd21\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"bc9a3347-c19e-4f9e-a40d-5ca82339d585\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ea9c7e96-5fc4-4301-9b86-d93b261a9181\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3a0a3386-6265-4aed-98bf-50feb80604f0\"\ ,\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\":\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:48 GMT + - Fri, 12 Jul 2019 10:28:24 GMT etag: - - W/"e64de83a-21d3-468a-aba6-299e6f0bbd21" + - W/"bc9a3347-c19e-4f9e-a40d-5ca82339d585" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 6153d60e-9aa3-4745-9ed1-cee53f11e516 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "etag": "W/\"e64de83a-21d3-468a-aba6-299e6f0bbd21\"", "location": "eastus2", + "etag": "W/\"bc9a3347-c19e-4f9e-a40d-5ca82339d585\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-lefr-02", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "ea9c7e96-5fc4-4301-9b86-d93b261a9181", + {"dnsServers": []}, "resourceGuid": "3a0a3386-6265-4aed-98bf-50feb80604f0", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '771' + - '777' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"7934e38c-62be-41ee-84d0-02a1418bbdaa\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"7015e47e-21de-4746-bf87-2760f8549e9c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"ea9c7e96-5fc4-4301-9b86-d93b261a9181\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"3a0a3386-6265-4aed-98bf-50feb80604f0\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"7934e38c-62be-41ee-84d0-02a1418bbdaa\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7015e47e-21de-4746-bf87-2760f8549e9c\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"7934e38c-62be-41ee-84d0-02a1418bbdaa\\\ + ,\r\n \"etag\": \"W/\\\"7015e47e-21de-4746-bf87-2760f8549e9c\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/9de2d684-4351-46d0-8907-c0ca7f51695c?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/15162ab7-24d4-4d7c-84da-c86c189ce90c?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2250' + - '2371' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:48 GMT + - Fri, 12 Jul 2019 10:28:24 GMT expires: - '-1' pragma: @@ -368,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 08ac2cd8-b146-4aca-8674-707f01197953 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9de2d684-4351-46d0-8907-c0ca7f51695c?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/15162ab7-24d4-4d7c-84da-c86c189ce90c?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:52 GMT + - Fri, 12 Jul 2019 10:28:28 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 2afb9977-f70d-48ca-9d84-2a48b32ecb1d status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"2512092a-2650-42f1-be35-1ea8565d75f6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"eb787332-5817-4cc2-b9a2-6cf41ea60db4\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ea9c7e96-5fc4-4301-9b86-d93b261a9181\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3a0a3386-6265-4aed-98bf-50feb80604f0\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"2512092a-2650-42f1-be35-1ea8565d75f6\\\"\"\ + ,\r\n \"etag\": \"W/\\\"eb787332-5817-4cc2-b9a2-6cf41ea60db4\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"2512092a-2650-42f1-be35-1ea8565d75f6\\\ + ,\r\n \"etag\": \"W/\\\"eb787332-5817-4cc2-b9a2-6cf41ea60db4\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2252' + - '2373' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:53 GMT + - Fri, 12 Jul 2019 10:28:28 GMT etag: - - W/"2512092a-2650-42f1-be35-1ea8565d75f6" + - W/"eb787332-5817-4cc2-b9a2-6cf41ea60db4" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 357d3b26-a735-4e6e-b377-a6a11812f497 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A55.9612075Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A33.6347963Z''\"","location":"westcentralus","properties":{"provisioningState":"Creating","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a4b221dd-0bcb-446b-9231-c0084d3c4e58?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d630a477-d869-4596-9047-9915de690d41?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:55 GMT + - Fri, 12 Jul 2019 10:28:34 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A55.9612075Z'" + - W/"datetime'2019-07-12T10%3A28%3A33.6347963Z'" expires: - '-1' pragma: @@ -550,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a4b221dd-0bcb-446b-9231-c0084d3c4e58?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d630a477-d869-4596-9047-9915de690d41?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a4b221dd-0bcb-446b-9231-c0084d3c4e58","name":"a4b221dd-0bcb-446b-9231-c0084d3c4e58","status":"Succeeded","startTime":"2019-06-04T16:19:55.8117206Z","endTime":"2019-06-04T16:19:56.0148545Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d630a477-d869-4596-9047-9915de690d41","name":"d630a477-d869-4596-9047-9915de690d41","status":"Succeeded","startTime":"2019-07-12T10:28:33.459171Z","endTime":"2019-07-12T10:28:33.772452Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - Tue, 04 Jun 2019 16:20:27 GMT + - Fri, 12 Jul 2019 10:29:05 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A56.1513825Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A33.7678892Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:27 GMT + - Fri, 12 Jul 2019 10:29:06 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A56.1513825Z'" + - W/"datetime'2019-07-12T10%3A28%3A33.7678892Z'" expires: - '-1' pragma: @@ -665,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A32.5811195Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A11.4952433Z''\"","location":"westcentralus","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/eastus2/operationResults/cb9295ff-63cc-4f18-9317-3796798193ca?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e637a7ed-8727-4dc0-8c34-6fc0c6a67b58?api-version=2019-06-01 cache-control: - no-cache content-length: - - '542' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:32 GMT + - Fri, 12 Jul 2019 10:29:11 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A32.5811195Z'" + - W/"datetime'2019-07-12T10%3A29%3A11.4952433Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cb9295ff-63cc-4f18-9317-3796798193ca?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e637a7ed-8727-4dc0-8c34-6fc0c6a67b58?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cb9295ff-63cc-4f18-9317-3796798193ca","name":"cb9295ff-63cc-4f18-9317-3796798193ca","status":"Succeeded","startTime":"2019-06-04T16:20:32.4380274Z","endTime":"2019-06-04T16:20:32.9380202Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e637a7ed-8727-4dc0-8c34-6fc0c6a67b58","name":"e637a7ed-8727-4dc0-8c34-6fc0c6a67b58","status":"Succeeded","startTime":"2019-07-12T10:29:11.3527698Z","endTime":"2019-07-12T10:29:11.9932009Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:03 GMT + - Fri, 12 Jul 2019 10:29:42 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A33.0735752Z''\"","location":"eastus2","properties":{"poolId":"9302fcc9-3a11-56dd-356a-0524a4353dd7","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A11.9875877Z''\"","location":"westcentralus","properties":{"poolId":"13fdec6b-d8dc-098b-ccd3-c6035192505f","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:04 GMT + - Fri, 12 Jul 2019 10:29:43 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A33.0735752Z'" + - W/"datetime'2019-07-12T10%3A29%3A11.9875877Z'" expires: - '-1' pragma: @@ -837,7 +805,7 @@ interactions: - request: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -848,37 +816,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '395' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A21%3A08.0059371Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A48.5131015Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 cache-control: - no-cache content-length: - - '904' + - '910' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:08 GMT + - Fri, 12 Jul 2019 10:29:48 GMT etag: - - W/"datetime'2019-06-04T16%3A21%3A08.0059371Z'" + - W/"datetime'2019-07-12T10%3A29%3A48.5131015Z'" expires: - '-1' pragma: @@ -892,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -913,240 +881,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:21: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 --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16: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 create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16: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 create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:23: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 --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Creating","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:44 GMT + - Fri, 12 Jul 2019 10:30:21 GMT expires: - '-1' pragma: @@ -1183,24 +935,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Creating","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:24:15 GMT + - Fri, 12 Jul 2019 10:30:54 GMT expires: - '-1' pragma: @@ -1237,24 +989,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Creating","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:24:46 GMT + - Fri, 12 Jul 2019 10:31:26 GMT expires: - '-1' pragma: @@ -1291,24 +1043,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Creating","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:25:17 GMT + - Fri, 12 Jul 2019 10:31:56 GMT expires: - '-1' pragma: @@ -1345,24 +1097,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Creating","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:25:48 GMT + - Fri, 12 Jul 2019 10:32:28 GMT expires: - '-1' pragma: @@ -1399,24 +1151,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7df2b90-a989-4eae-a758-8e7c15beae73","name":"c7df2b90-a989-4eae-a758-8e7c15beae73","status":"Succeeded","startTime":"2019-07-12T10:29:48.3608209Z","endTime":"2019-07-12T10:32:38.872976Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:26:19 GMT + - Fri, 12 Jul 2019 10:32:59 GMT expires: - '-1' pragma: @@ -1453,24 +1205,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A32%3A38.8710941Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"35d27809-02de-bf75-3e48-9a3659f94205","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_51822da8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d19d78f1-7004-051c-cadc-0fadf7fe2e08","fileSystemId":"35d27809-02de-bf75-3e48-9a3659f94205","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:53 GMT + - Fri, 12 Jul 2019 10:32:59 GMT + etag: + - W/"datetime'2019-07-12T10%3A32%3A38.8710941Z'" expires: - '-1' pragma: @@ -1493,94 +1247,50 @@ interactions: code: 200 message: OK - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "35d27809-02de-bf75-3e48-9a3659f94205"}, + "location": "westcentralus"}' 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 --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: + - '101' + Content-Type: - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:27: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 --creation-token --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"35d27809-02de-bf75-3e48-9a3659f94205","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/westcentralus/operationResults/6484910e-8cb9-434f-8359-6197e84c5c4c?api-version=2019-06-01 cache-control: - no-cache content-length: - - '637' + - '668' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:27:56 GMT + - Fri, 12 Jul 2019 10:33:05 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6484910e-8cb9-434f-8359-6197e84c5c4c?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1589,17 +1299,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: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1608,31 +1316,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 --creation-token --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6484910e-8cb9-434f-8359-6197e84c5c4c?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6484910e-8cb9-434f-8359-6197e84c5c4c","name":"6484910e-8cb9-434f-8359-6197e84c5c4c","status":"Succeeded","startTime":"2019-07-12T10:33:05.0142064Z","endTime":"2019-07-12T10:33:07.2485726Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:28:27 GMT + - Fri, 12 Jul 2019 10:33:36 GMT expires: - '-1' pragma: @@ -1662,31 +1369,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 --creation-token --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Creating","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"120f4489-96d8-833d-202f-928f50e6831e","fileSystemId":"35d27809-02de-bf75-3e48-9a3659f94205","name":"cli-sn-000005","created":"2019-07-12T10:33:05Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '754' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:28:58 GMT + - Fri, 12 Jul 2019 10:33:37 GMT expires: - '-1' pragma: @@ -1716,31 +1422,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 --creation-token --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","name":"cf2d62a8-495d-4c8b-8972-ec11ed3e49ff","status":"Succeeded","startTime":"2019-06-04T16:21:07.8752988Z","endTime":"2019-06-04T16:29:02.6831465Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"120f4489-96d8-833d-202f-928f50e6831e","fileSystemId":"35d27809-02de-bf75-3e48-9a3659f94205","name":"cli-sn-000005","created":"2019-07-12T10:33:05Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '766' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:29:29 GMT + - Fri, 12 Jul 2019 10:33:40 GMT expires: - '-1' pragma: @@ -1770,96 +1477,38 @@ interactions: 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 --creation-token --vnet --subnet - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A29%3A02.7195324Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"ac7196fb-4ed6-edc0-1775-c3e02e3048fa","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_8345a8b9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0356be67-6c5b-6597-fb6e-0c9fbb2ae758","fileSystemId":"ac7196fb-4ed6-edc0-1775-c3e02e3048fa","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.4"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1625' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:29:30 GMT - etag: - - W/"datetime'2019-06-04T16%3A29%3A02.7195324Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": {"fileSystemId": "ac7196fb-4ed6-edc0-1775-c3e02e3048fa"}, - "location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create + - netappfiles snapshot delete Connection: - keep-alive Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -g -a -p -v -s -l --file-system-id + - -g -a -p -v -s User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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","etag":"6/4/2019 - 4:29:36 PM","location":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"14416b19-ec70-4b1b-2136-cfb720322803","fileSystemId":"ac7196fb-4ed6-edc0-1775-c3e02e3048fa","name":"cli-sn-000005","created":"2019-06-04T16:29:34Z"}}' + 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/westcentralus/operationResults/75d56cb4-99ea-4599-a90b-2c0007f6bebc?api-version=2019-06-01 cache-control: - no-cache content-length: - - '777' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 04 Jun 2019 16:29:36 GMT + - Fri, 12 Jul 2019 10:33:42 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/75d56cb4-99ea-4599-a90b-2c0007f6bebc?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1870,13 +1519,13 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 202 + message: Accepted - request: body: null headers: @@ -1885,32 +1534,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot list + - netappfiles snapshot delete Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - -g -a -p -v -s User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/75d56cb4-99ea-4599-a90b-2c0007f6bebc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"14416b19-ec70-4b1b-2136-cfb720322803","fileSystemId":"ac7196fb-4ed6-edc0-1775-c3e02e3048fa","name":"cli-sn-000005","created":"2019-06-04T16:29:34Z"}}]}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/75d56cb4-99ea-4599-a90b-2c0007f6bebc","name":"75d56cb4-99ea-4599-a90b-2c0007f6bebc","status":"Succeeded","startTime":"2019-07-12T10:33:42.8652926Z","endTime":"2019-07-12T10:33:46.8341657Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '760' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:29:38 GMT + - Fri, 12 Jul 2019 10:34:14 GMT expires: - '-1' pragma: @@ -1932,59 +1579,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v -s - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 - response: - body: - string: !!python/unicode '' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:29: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 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -1999,12 +1593,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' @@ -2018,7 +1612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:29:45 GMT + - Fri, 12 Jul 2019 10:34:15 GMT expires: - '-1' pragma: @@ -2040,51 +1634,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:29:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJUUhKWVNRQ1JLQVVZWUxCV0JIT1pJR0pEUTNQQUZDUzJNVnw0QjJDMTJFOTZBQzY1REQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 8eb8fef6d83..827cf3ec9b7 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T15:55:04Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T15:55:04Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:55:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"d3d42147-6f87-4ed5-a95c-44b4cb063b09\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"265a351c-e13e-48be-a155-cddab3deb3c7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"73bc345c-c72b-493a-9a2c-fd183d2a9f85\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"61010e65-3af2-44f1-87b7-8f523c4ddf68\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6bd73a19-edbf-4ec4-9a59-8a1205faf0ed?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c6646c7b-2040-42da-b460-f24033658ef7?api-version=2019-04-01 cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:29 GMT + - Fri, 12 Jul 2019 09:27:50 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 9cceec0c-7042-4729-b4b4-9310b4a7e5d7 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6bd73a19-edbf-4ec4-9a59-8a1205faf0ed?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c6646c7b-2040-42da-b460-f24033658ef7?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:34 GMT + - Fri, 12 Jul 2019 09:27:54 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 8b281c7c-2b15-4b40-9168-5ef7c25880ca status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"d3a25146-500d-401f-87a7-1589b1ce85f1\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"a8543e9c-7de1-42f6-ab0d-e570ed4afa1d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"73bc345c-c72b-493a-9a2c-fd183d2a9f85\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"61010e65-3af2-44f1-87b7-8f523c4ddf68\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:34 GMT + - Fri, 12 Jul 2019 09:27:55 GMT etag: - - W/"d3a25146-500d-401f-87a7-1589b1ce85f1" + - W/"a8543e9c-7de1-42f6-ab0d-e570ed4afa1d" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 38b428e9-cb03-4351-928d-396d6c466dcc status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"d3a25146-500d-401f-87a7-1589b1ce85f1\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"a8543e9c-7de1-42f6-ab0d-e570ed4afa1d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"73bc345c-c72b-493a-9a2c-fd183d2a9f85\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"61010e65-3af2-44f1-87b7-8f523c4ddf68\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:35 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"d3a25146-500d-401f-87a7-1589b1ce85f1" + - W/"a8543e9c-7de1-42f6-ab0d-e570ed4afa1d" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - c21178e8-5faa-457c-b4a1-79d22e177575 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "etag": "W/\"d3a25146-500d-401f-87a7-1589b1ce85f1\"", "location": "eastus2", + "etag": "W/\"a8543e9c-7de1-42f6-ab0d-e570ed4afa1d\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.12.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "73bc345c-c72b-493a-9a2c-fd183d2a9f85", + {"dnsServers": []}, "resourceGuid": "61010e65-3af2-44f1-87b7-8f523c4ddf68", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '779' + - '785' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"fb88c126-31c5-47fb-9366-499cac0fd155\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"7f1d385a-5cf6-4489-bf3b-843a69b1e788\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"73bc345c-c72b-493a-9a2c-fd183d2a9f85\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"61010e65-3af2-44f1-87b7-8f523c4ddf68\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"fb88c126-31c5-47fb-9366-499cac0fd155\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7f1d385a-5cf6-4489-bf3b-843a69b1e788\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"fb88c126-31c5-47fb-9366-499cac0fd155\\\ + ,\r\n \"etag\": \"W/\\\"7f1d385a-5cf6-4489-bf3b-843a69b1e788\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/4a732927-fbc3-48a3-a9df-59e42b448ec6?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e441ba-807b-4269-81d0-190b82a15b08?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2278' + - '2399' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:36 GMT + - Fri, 12 Jul 2019 09:27:57 GMT expires: - '-1' pragma: @@ -368,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 66196e00-8d0b-4075-843a-190e4c4cb8fb x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4a732927-fbc3-48a3-a9df-59e42b448ec6?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e441ba-807b-4269-81d0-190b82a15b08?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:39 GMT + - Fri, 12 Jul 2019 09:28:00 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 2143275e-f9e0-4876-8497-03d4039be099 status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"749e4778-f7b2-483f-bb9d-622b98153698\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"b0fb7bc2-6159-4aad-9c46-0c546d0733c7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"73bc345c-c72b-493a-9a2c-fd183d2a9f85\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"61010e65-3af2-44f1-87b7-8f523c4ddf68\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"749e4778-f7b2-483f-bb9d-622b98153698\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b0fb7bc2-6159-4aad-9c46-0c546d0733c7\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"749e4778-f7b2-483f-bb9d-622b98153698\\\ + ,\r\n \"etag\": \"W/\\\"b0fb7bc2-6159-4aad-9c46-0c546d0733c7\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2280' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:40 GMT + - Fri, 12 Jul 2019 09:28:01 GMT etag: - - W/"749e4778-f7b2-483f-bb9d-622b98153698" + - W/"b0fb7bc2-6159-4aad-9c46-0c546d0733c7" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 37a3eebb-50f3-4efc-9856-40683e59f850 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A43.957645Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A05.9482157Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/22ec2993-e3cd-47a6-a9d2-1359c98aafbc?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/397354dd-68f7-47bf-a61a-9cb5ca03ad5e?api-version=2019-06-01 cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:44 GMT + - Fri, 12 Jul 2019 09:28:05 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A43.957645Z'" + - W/"datetime'2019-07-12T09%3A28%3A05.9482157Z'" expires: - '-1' pragma: @@ -550,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/22ec2993-e3cd-47a6-a9d2-1359c98aafbc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/397354dd-68f7-47bf-a61a-9cb5ca03ad5e?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/22ec2993-e3cd-47a6-a9d2-1359c98aafbc","name":"22ec2993-e3cd-47a6-a9d2-1359c98aafbc","status":"Succeeded","startTime":"2019-06-04T15:55:43.767567Z","endTime":"2019-06-04T15:55:44.0175678Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/397354dd-68f7-47bf-a61a-9cb5ca03ad5e","name":"397354dd-68f7-47bf-a61a-9cb5ca03ad5e","status":"Succeeded","startTime":"2019-07-12T09:28:05.8103031Z","endTime":"2019-07-12T09:28:06.0759609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:15 GMT + - Fri, 12 Jul 2019 09:28:36 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A44.1528283Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A06.0733049Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:15 GMT + - Fri, 12 Jul 2019 09:28:37 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A44.1528283Z'" + - W/"datetime'2019-07-12T09%3A28%3A06.0733049Z'" expires: - '-1' pragma: @@ -666,7 +634,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '141' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A19.2808412Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A42.1394892Z''\"","location":"westcentralus","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/eastus2/operationResults/6834d9ed-87c8-4a4e-8626-10f48583f7c1?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8698c732-b531-4bb0-bcd6-0715135402ae?api-version=2019-06-01 cache-control: - no-cache content-length: - - '583' + - '589' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:19 GMT + - Fri, 12 Jul 2019 09:28:42 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A19.2808412Z'" + - W/"datetime'2019-07-12T09%3A28%3A42.1394892Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6834d9ed-87c8-4a4e-8626-10f48583f7c1?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8698c732-b531-4bb0-bcd6-0715135402ae?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6834d9ed-87c8-4a4e-8626-10f48583f7c1","name":"6834d9ed-87c8-4a4e-8626-10f48583f7c1","status":"Succeeded","startTime":"2019-06-04T15:56:19.1388728Z","endTime":"2019-06-04T15:56:19.6463341Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8698c732-b531-4bb0-bcd6-0715135402ae","name":"8698c732-b531-4bb0-bcd6-0715135402ae","status":"Succeeded","startTime":"2019-07-12T09:28:42.0138799Z","endTime":"2019-07-12T09:28:42.5763791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:50 GMT + - Fri, 12 Jul 2019 09:29:14 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A19.7242604Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e13ed60f-fe80-2c07-ca42-35f644a85792","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A42.5767956Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"38d590ad-da67-b462-fade-2a4412d786cd","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' + - '697' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:50 GMT + - Fri, 12 Jul 2019 09:29:17 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A19.7242604Z'" + - W/"datetime'2019-07-12T09%3A28%3A42.5767956Z'" expires: - '-1' pragma: @@ -835,10 +803,10 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"usageThreshold": + body: !!python/unicode '{"location": "westcentralus", "properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "tags": {"Tag1": - "Value1", "Tag2": "Value2"}}' + "protocolTypes": ["NFSv3", "NFSv4"], "serviceLevel": "Premium", "creationToken": + "cli-vol-000004"}, "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -849,37 +817,37 @@ interactions: Connection: - keep-alive Content-Length: - - '441' + - '484' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A55.4059949Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A29%3A23.2562085Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3","NFSv4"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 cache-control: - no-cache content-length: - - '951' + - '991' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:55 GMT + - Fri, 12 Jul 2019 09:29:23 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A55.4059949Z'" + - W/"datetime'2019-07-12T09%3A29%3A23.2562085Z'" expires: - '-1' pragma: @@ -893,7 +861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -912,134 +880,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 15:57: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 --creation-token --vnet --subnet --tags - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 15:57: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 --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Creating","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:27 GMT + - Fri, 12 Jul 2019 09:29:55 GMT expires: - '-1' pragma: @@ -1074,26 +934,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Creating","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:58 GMT + - Fri, 12 Jul 2019 09:30:29 GMT expires: - '-1' pragma: @@ -1128,26 +988,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Creating","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:29 GMT + - Fri, 12 Jul 2019 09:31:01 GMT expires: - '-1' pragma: @@ -1182,26 +1042,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Creating","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:00 GMT + - Fri, 12 Jul 2019 09:31:34 GMT expires: - '-1' pragma: @@ -1236,26 +1096,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Creating","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:32 GMT + - Fri, 12 Jul 2019 09:32:06 GMT expires: - '-1' pragma: @@ -1290,26 +1150,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/183376f9-2ba7-42af-a66a-1182fc721a06","name":"183376f9-2ba7-42af-a66a-1182fc721a06","status":"Succeeded","startTime":"2019-07-12T09:29:23.1049263Z","endTime":"2019-07-12T09:32:31.6148115Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:02 GMT + - Fri, 12 Jul 2019 09:32:37 GMT expires: - '-1' pragma: @@ -1344,26 +1204,28 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A32%3A31.608294Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"675e6272-af8d-6787-d588-9bcce496e22c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3","NFSv4"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_d1089d7c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5ac981ae-aab1-9047-be91-47e2e78e3ad7","fileSystemId":"675e6272-af8d-6787-d588-9bcce496e22c","startIp":"10.12.0.4","endIp":"10.12.0.4","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1640' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:33 GMT + - Fri, 12 Jul 2019 09:32:39 GMT + etag: + - W/"datetime'2019-07-12T09%3A32%3A31.608294Z'" expires: - '-1' pragma: @@ -1393,31 +1255,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume list Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A32%3A31.608294Z''\"","location":"westcentralus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"675e6272-af8d-6787-d588-9bcce496e22c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3","NFSv4"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_d1089d7c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5ac981ae-aab1-9047-be91-47e2e78e3ad7","fileSystemId":"675e6272-af8d-6787-d588-9bcce496e22c","startIp":"10.12.0.4","endIp":"10.12.0.4","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.4"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1652' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:02:04 GMT + - Fri, 12 Jul 2019 09:32:40 GMT expires: - '-1' pragma: @@ -1447,33 +1310,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + 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/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 cache-control: - no-cache content-length: - - '637' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 04 Jun 2019 16:02:35 GMT + - Fri, 12 Jul 2019 09:32:42 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1482,17 +1350,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: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1501,31 +1367,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:06 GMT + - Fri, 12 Jul 2019 09:33:15 GMT expires: - '-1' pragma: @@ -1555,31 +1420,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:37 GMT + - Fri, 12 Jul 2019 09:33:48 GMT expires: - '-1' pragma: @@ -1609,31 +1473,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:04:07 GMT + - Fri, 12 Jul 2019 09:34:18 GMT expires: - '-1' pragma: @@ -1663,31 +1526,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:04:39 GMT + - Fri, 12 Jul 2019 09:34:49 GMT expires: - '-1' pragma: @@ -1717,31 +1579,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:05:09 GMT + - Fri, 12 Jul 2019 09:35:21 GMT expires: - '-1' pragma: @@ -1771,31 +1632,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:05:40 GMT + - Fri, 12 Jul 2019 09:35:53 GMT expires: - '-1' pragma: @@ -1825,31 +1685,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Deleting","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:06:11 GMT + - Fri, 12 Jul 2019 09:36:26 GMT expires: - '-1' pragma: @@ -1879,31 +1738,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 --creation-token --vnet --subnet --tags + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Creating","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ee6b684-f5e3-4d57-8f63-a663982486ed","name":"1ee6b684-f5e3-4d57-8f63-a663982486ed","status":"Succeeded","startTime":"2019-07-12T09:32:42.8727748Z","endTime":"2019-07-12T09:36:37.9194435Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:06:42 GMT + - Fri, 12 Jul 2019 09:36:58 GMT expires: - '-1' pragma: @@ -1933,31 +1791,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles volume list Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + - --resource-group -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0a260585-8dbf-4279-829f-cf3eb82b6233","name":"0a260585-8dbf-4279-829f-cf3eb82b6233","status":"Succeeded","startTime":"2019-06-04T15:56:55.2128691Z","endTime":"2019-06-04T16:06:44.2855615Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '12' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:07:13 GMT + - Fri, 12 Jul 2019 09:37:02 GMT expires: - '-1' pragma: @@ -1979,804 +1838,4 @@ 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 --creation-token --vnet --subnet --tags - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A06%3A44.3299721Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"ccda6c71-99b2-3cc9-688a-3f4732b914c8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_a0bb5c60","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2a604fdf-e6e3-5c0f-461a-d338f23dfa8d","fileSystemId":"ccda6c71-99b2-3cc9-688a-3f4732b914c8","startIp":"10.12.0.7","endIp":"10.12.0.7","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.7"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1676' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:07:14 GMT - etag: - - W/"datetime'2019-06-04T16%3A06%3A44.3299721Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A06%3A44.3299721Z''\"","location":"eastus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"ccda6c71-99b2-3cc9-688a-3f4732b914c8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_a0bb5c60","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2a604fdf-e6e3-5c0f-461a-d338f23dfa8d","fileSystemId":"ccda6c71-99b2-3cc9-688a-3f4732b914c8","startIp":"10.12.0.7","endIp":"10.12.0.7","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.7"}]}}]}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1688' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:07: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 - Content-Length: - - '0' - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-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/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:07:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-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: - - '14999' - 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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:07: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:08:18 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:08: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:09: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:09: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:10: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:10: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:11: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Deleting","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Tue, 04 Jun 2019 16:11: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/351389d8-f419-4abf-a609-7d418d68c8db","name":"351389d8-f419-4abf-a609-7d418d68c8db","status":"Succeeded","startTime":"2019-06-04T16:07:17.3148806Z","endTime":"2019-06-04T16:12:21.8610262Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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: - - Tue, 04 Jun 2019 16:12: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 list - Connection: - - keep-alive - ParameterSetName: - - --resource-group -a -p - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-05-01 - response: - body: - string: !!python/unicode '{"value":[]}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:12: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: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:12:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHQjJYNlpSRkVZV1NZVExLR1RGSjVDUlJRWTMzNU9NQ3w1NDI5RDIxNzk3QTBGMUNBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 f1b575302e7..c14691a4478 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:20:02Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-05-31T16:20:02Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:20:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.3929272Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.4651718Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/371476ff-f7e4-45cb-b2e2-03f045342f86?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01e9a1ef-63f1-4a5a-8fb6-79d04596c40c?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:13 GMT + - Fri, 12 Jul 2019 12:50:51 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.3929272Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.4651718Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/371476ff-f7e4-45cb-b2e2-03f045342f86?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01e9a1ef-63f1-4a5a-8fb6-79d04596c40c?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/371476ff-f7e4-45cb-b2e2-03f045342f86","name":"371476ff-f7e4-45cb-b2e2-03f045342f86","status":"Succeeded","startTime":"2019-05-31T16:20:12.2776486Z","endTime":"2019-05-31T16:20:12.4660675Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01e9a1ef-63f1-4a5a-8fb6-79d04596c40c","name":"01e9a1ef-63f1-4a5a-8fb6-79d04596c40c","status":"Succeeded","startTime":"2019-07-12T12:50:51.3236001Z","endTime":"2019-07-12T12:50:51.7769315Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:45 GMT + - Fri, 12 Jul 2019 12:51:23 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.5900679Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.7643816Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:48 GMT + - Fri, 12 Jul 2019 12:51:26 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.5900679Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.7643816Z'" expires: - '-1' pragma: @@ -218,51 +168,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:20:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHTFJRTFlPUDJTMkJMVE5HN0QzNkxRTTRIUFNVRFlRTXwxMzYyMzIyNUU2MzBCRkI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 202 - message: Accepted version: 1 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 63ddc0754b7..b9c9b68766e 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:20:02Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-05-31T16:20:02Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:20:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.5350285Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.4541646Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/af0f89ab-8876-466c-a2e4-77ddbdf0a1ff?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd7033c8-fa58-4131-b784-17b90c7723d2?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:12 GMT + - Fri, 12 Jul 2019 12:50:52 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.5350285Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.4541646Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/af0f89ab-8876-466c-a2e4-77ddbdf0a1ff?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd7033c8-fa58-4131-b784-17b90c7723d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/af0f89ab-8876-466c-a2e4-77ddbdf0a1ff","name":"af0f89ab-8876-466c-a2e4-77ddbdf0a1ff","status":"Succeeded","startTime":"2019-05-31T16:20:12.3870318Z","endTime":"2019-05-31T16:20:12.6057893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd7033c8-fa58-4131-b784-17b90c7723d2","name":"bd7033c8-fa58-4131-b784-17b90c7723d2","status":"Succeeded","startTime":"2019-07-12T12:50:51.3308044Z","endTime":"2019-07-12T12:50:51.5807684Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:46 GMT + - Fri, 12 Jul 2019 12:51:24 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.7281667Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.5792521Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:49 GMT + - Fri, 12 Jul 2019 12:51:26 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.7281667Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.5792521Z'" expires: - '-1' pragma: @@ -218,51 +168,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:20:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHWE1OS0NQMkszSzNZM0NERUJSU09SNTRPRURXTVhHSnxDMUE3OEJGNjNBOTg4QTUyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 0a5f3a5c06e..ff2d2efbd1d 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T15:55:04Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T15:55:04Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:55:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"8f9e6659-0bf1-468a-a604-e99e45920594\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"c63ca1e1-27ac-4c1b-b520-c64040495080\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"1bcc2d6d-2f6d-408a-a276-1637d8915cde\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"093e2aba-c149-4312-8234-0cef48ac4b27\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/692e2f1f-3b1d-4862-8310-b6c12656ea3c?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dd99fe40-9743-4e31-9000-83f5a8569c04?api-version=2019-04-01 cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:10 GMT + - Fri, 12 Jul 2019 09:27:50 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - f0cfdd59-ad19-4a05-b767-98723d215739 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,58 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/692e2f1f-3b1d-4862-8310-b6c12656ea3c?api-version=2019-04-01 - response: - body: - string: !!python/unicode "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:55:15 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 - 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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/692e2f1f-3b1d-4862-8310-b6c12656ea3c?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dd99fe40-9743-4e31-9000-83f5a8569c04?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -191,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:26 GMT + - Fri, 12 Jul 2019 09:27:54 GMT expires: - '-1' pragma: @@ -207,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 25c0caa6-72dc-4bda-bda3-e481a29bdfe0 status: code: 200 message: OK @@ -224,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"f0ff601b-e394-49fd-beef-34f20f5c0a63\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"80e86080-9ea5-4197-af5c-bb8c22cdc7a5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bcc2d6d-2f6d-408a-a276-1637d8915cde\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"093e2aba-c149-4312-8234-0cef48ac4b27\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -245,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:26 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"f0ff601b-e394-49fd-beef-34f20f5c0a63" + - W/"80e86080-9ea5-4197-af5c-bb8c22cdc7a5" expires: - '-1' pragma: @@ -267,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 7bb2fa73-bfd9-44f5-a5e8-6428e603ecc2 status: code: 200 message: OK @@ -284,8 +192,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -294,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"f0ff601b-e394-49fd-beef-34f20f5c0a63\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"80e86080-9ea5-4197-af5c-bb8c22cdc7a5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bcc2d6d-2f6d-408a-a276-1637d8915cde\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"093e2aba-c149-4312-8234-0cef48ac4b27\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -307,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:27 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"f0ff601b-e394-49fd-beef-34f20f5c0a63" + - W/"80e86080-9ea5-4197-af5c-bb8c22cdc7a5" expires: - '-1' pragma: @@ -329,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a1f808a9-cfe9-489d-b11a-1bd5e4e0fc50 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "etag": "W/\"f0ff601b-e394-49fd-beef-34f20f5c0a63\"", "location": "eastus2", + "etag": "W/\"80e86080-9ea5-4197-af5c-bb8c22cdc7a5\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.12.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "1bcc2d6d-2f6d-408a-a276-1637d8915cde", + {"dnsServers": []}, "resourceGuid": "093e2aba-c149-4312-8234-0cef48ac4b27", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -351,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '779' + - '785' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -367,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"28aafda2-803c-4686-9528-27306c1ed39f\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"e62800ee-a497-4c3e-97c6-804b1c5f14e2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"1bcc2d6d-2f6d-408a-a276-1637d8915cde\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"093e2aba-c149-4312-8234-0cef48ac4b27\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"28aafda2-803c-4686-9528-27306c1ed39f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"e62800ee-a497-4c3e-97c6-804b1c5f14e2\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"28aafda2-803c-4686-9528-27306c1ed39f\\\ + ,\r\n \"etag\": \"W/\\\"e62800ee-a497-4c3e-97c6-804b1c5f14e2\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/b52b645e-e85a-47ac-b40b-f47303064a54?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d57fbc95-de24-417a-a4c5-1d446dac386f?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2278' + - '2399' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:27 GMT + - Fri, 12 Jul 2019 09:27:56 GMT expires: - '-1' pragma: @@ -416,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - ff4f31b2-1ca8-4e8d-822e-eee8dec21b56 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -435,10 +349,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/b52b645e-e85a-47ac-b40b-f47303064a54?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d57fbc95-de24-417a-a4c5-1d446dac386f?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -450,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:31 GMT + - Fri, 12 Jul 2019 09:28:01 GMT expires: - '-1' pragma: @@ -466,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - abb7caeb-f45f-4441-85a2-02151deadfc2 status: code: 200 message: OK @@ -483,48 +399,50 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"3c5015ba-79f9-45f9-91f6-007b9c01d154\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"57abbc06-3ba1-443c-8ba0-50b11505c603\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"1bcc2d6d-2f6d-408a-a276-1637d8915cde\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"093e2aba-c149-4312-8234-0cef48ac4b27\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"3c5015ba-79f9-45f9-91f6-007b9c01d154\\\"\"\ + ,\r\n \"etag\": \"W/\\\"57abbc06-3ba1-443c-8ba0-50b11505c603\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"3c5015ba-79f9-45f9-91f6-007b9c01d154\\\ + ,\r\n \"etag\": \"W/\\\"57abbc06-3ba1-443c-8ba0-50b11505c603\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2280' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:31 GMT + - Fri, 12 Jul 2019 09:28:02 GMT etag: - - W/"3c5015ba-79f9-45f9-91f6-007b9c01d154" + - W/"57abbc06-3ba1-443c-8ba0-50b11505c603" expires: - '-1' pragma: @@ -540,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 846c443d-51de-4f1e-afb0-9fe7313c8a95 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -555,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A34.9201584Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A06.3244789Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/57ed0263-8872-4d08-a06c-9139576433da?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb665146-42a0-4415-bd14-93b1108b7643?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:36 GMT + - Fri, 12 Jul 2019 09:28:07 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A34.9201584Z'" + - W/"datetime'2019-07-12T09%3A28%3A06.3244789Z'" expires: - '-1' pragma: @@ -598,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -618,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/57ed0263-8872-4d08-a06c-9139576433da?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb665146-42a0-4415-bd14-93b1108b7643?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/57ed0263-8872-4d08-a06c-9139576433da","name":"57ed0263-8872-4d08-a06c-9139576433da","status":"Succeeded","startTime":"2019-06-04T15:55:34.7382995Z","endTime":"2019-06-04T15:55:37.9259202Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb665146-42a0-4415-bd14-93b1108b7643","name":"fb665146-42a0-4415-bd14-93b1108b7643","status":"Succeeded","startTime":"2019-07-12T09:28:06.200926Z","endTime":"2019-07-12T09:28:06.4555259Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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: - - Tue, 04 Jun 2019 15:56:06 GMT + - Fri, 12 Jul 2019 09:28:38 GMT expires: - '-1' pragma: @@ -671,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A39.559515Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A06.4535693Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:07 GMT + - Fri, 12 Jul 2019 09:28:38 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A39.559515Z'" + - W/"datetime'2019-07-12T09%3A28%3A06.4535693Z'" expires: - '-1' pragma: @@ -713,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -725,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A11.658658Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A43.2452632Z''\"","location":"westcentralus","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/eastus2/operationResults/a72fedc5-bf50-4391-94f8-9152538a0253?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bb3d4ca0-9631-4682-bb4e-d3aab3c2d99a?api-version=2019-06-01 cache-control: - no-cache content-length: - - '541' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:11 GMT + - Fri, 12 Jul 2019 09:28:43 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A11.658658Z'" + - W/"datetime'2019-07-12T09%3A28%3A43.2452632Z'" expires: - '-1' pragma: @@ -768,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -788,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a72fedc5-bf50-4391-94f8-9152538a0253?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bb3d4ca0-9631-4682-bb4e-d3aab3c2d99a?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a72fedc5-bf50-4391-94f8-9152538a0253","name":"a72fedc5-bf50-4391-94f8-9152538a0253","status":"Succeeded","startTime":"2019-06-04T15:56:11.5032159Z","endTime":"2019-06-04T15:56:12.2065372Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bb3d4ca0-9631-4682-bb4e-d3aab3c2d99a","name":"bb3d4ca0-9631-4682-bb4e-d3aab3c2d99a","status":"Succeeded","startTime":"2019-07-12T09:28:43.0855967Z","endTime":"2019-07-12T09:28:43.7904825Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:43 GMT + - Fri, 12 Jul 2019 09:29:15 GMT expires: - '-1' pragma: @@ -841,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A12.3513075Z''\"","location":"eastus2","properties":{"poolId":"68405c99-e9a5-ec08-606a-f13583cdf9a6","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A43.7846406Z''\"","location":"westcentralus","properties":{"poolId":"5f56a367-f7ee-c803-1ad5-fb00228b016a","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:43 GMT + - Fri, 12 Jul 2019 09:29:18 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A12.3513075Z'" + - W/"datetime'2019-07-12T09%3A28%3A43.7846406Z'" expires: - '-1' pragma: @@ -885,7 +805,7 @@ interactions: - request: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -896,37 +816,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '401' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A49.8187124Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A29%3A24.4420376Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 cache-control: - no-cache content-length: - - '910' + - '916' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:49 GMT + - Fri, 12 Jul 2019 09:29:24 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A49.8187124Z'" + - W/"datetime'2019-07-12T09%3A29%3A24.4420376Z'" expires: - '-1' pragma: @@ -961,24 +881,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:21 GMT + - Fri, 12 Jul 2019 09:29:56 GMT expires: - '-1' pragma: @@ -1015,24 +935,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:52 GMT + - Fri, 12 Jul 2019 09:30:29 GMT expires: - '-1' pragma: @@ -1069,24 +989,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:22 GMT + - Fri, 12 Jul 2019 09:31:00 GMT expires: - '-1' pragma: @@ -1123,24 +1043,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:44 GMT + - Fri, 12 Jul 2019 09:31:32 GMT expires: - '-1' pragma: @@ -1177,24 +1097,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:20 GMT + - Fri, 12 Jul 2019 09:32:04 GMT expires: - '-1' pragma: @@ -1231,24 +1151,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:50 GMT + - Fri, 12 Jul 2019 09:32:35 GMT expires: - '-1' pragma: @@ -1285,24 +1205,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:21 GMT + - Fri, 12 Jul 2019 09:33:06 GMT expires: - '-1' pragma: @@ -1339,24 +1259,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:52 GMT + - Fri, 12 Jul 2019 09:33:39 GMT expires: - '-1' pragma: @@ -1393,24 +1313,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:02:22 GMT + - Fri, 12 Jul 2019 09:34:16 GMT expires: - '-1' pragma: @@ -1447,24 +1367,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Creating","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:02:53 GMT + - Fri, 12 Jul 2019 09:34:46 GMT expires: - '-1' pragma: @@ -1501,24 +1421,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a0e412e-d178-46a6-9d66-aa15b48302af","name":"4a0e412e-d178-46a6-9d66-aa15b48302af","status":"Succeeded","startTime":"2019-06-04T15:56:49.6426649Z","endTime":"2019-06-04T16:03:08.8942394Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Creating","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:25 GMT + - Fri, 12 Jul 2019 09:35:17 GMT expires: - '-1' pragma: @@ -1555,26 +1475,80 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A08.9263211Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/42796125-a403-4f9e-b127-4cddbb5732b4","name":"42796125-a403-4f9e-b127-4cddbb5732b4","status":"Succeeded","startTime":"2019-07-12T09:29:24.2924432Z","endTime":"2019-07-12T09:35:28.6679888Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1635' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:26 GMT + - Fri, 12 Jul 2019 09:35: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A35%3A28.6315246Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1592' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:35:54 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A08.9263211Z'" + - W/"datetime'2019-07-12T09%3A35%3A28.6315246Z'" expires: - '-1' pragma: @@ -1611,28 +1585,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv4 User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A08.9263211Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A35%3A28.6315246Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1635' + - '1592' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:27 GMT + - Fri, 12 Jul 2019 09:35:58 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A08.9263211Z'" + - W/"datetime'2019-07-12T09%3A35%3A28.6315246Z'" expires: - '-1' pragma: @@ -1677,28 +1651,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv4 User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A34.7857696Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A04.2542164Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1763' + - '1720' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:34 GMT + - Fri, 12 Jul 2019 09:36:08 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A34.7857696Z'" + - W/"datetime'2019-07-12T09%3A36%3A04.2542164Z'" expires: - '-1' pragma: @@ -1716,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1737,28 +1711,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv4 User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A34.7857696Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A08.1789365Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1763' + - '1720' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:35 GMT + - Fri, 12 Jul 2019 09:36:10 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A34.7857696Z'" + - W/"datetime'2019-07-12T09%3A36%3A08.1789365Z'" expires: - '-1' pragma: @@ -1805,28 +1779,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv4 User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A44.0235033Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A15.4419714Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1890' + - '1847' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:43 GMT + - Fri, 12 Jul 2019 09:36:19 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A44.0235033Z'" + - W/"datetime'2019-07-12T09%3A36%3A15.4419714Z'" expires: - '-1' pragma: @@ -1844,7 +1818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1864,28 +1838,28 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A44.0235033Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A20.1842586Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1890' + - '1847' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:44 GMT + - Fri, 12 Jul 2019 09:36:22 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A44.0235033Z'" + - W/"datetime'2019-07-12T09%3A36%3A20.1842586Z'" expires: - '-1' pragma: @@ -1921,28 +1895,28 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A03%3A44.0235033Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A20.1842586Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1890' + - '1847' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:45 GMT + - Fri, 12 Jul 2019 09:36:25 GMT etag: - - W/"datetime'2019-06-04T16%3A03%3A44.0235033Z'" + - W/"datetime'2019-07-12T09%3A36%3A20.1842586Z'" expires: - '-1' pragma: @@ -1965,13 +1939,16 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "exportPolicy": {"rules": [{"unixReadOnly": true, "allowedClients": "1.2.3.0/24", - "cifs": false, "nfsv4": false, "unixReadWrite": false, "ruleIndex": 3, "nfsv3": - true}, {"unixReadOnly": false, "allowedClients": "0.0.0.0/0", "cifs": false, - "nfsv4": false, "unixReadWrite": true, "ruleIndex": 1, "nfsv3": true}]}, "serviceLevel": - "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + body: !!python/unicode '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "protocolTypes": ["NFSv3"], "exportPolicy": {"rules": [{"unixReadOnly": true, + "allowedClients": "1.2.3.0/24", "cifs": false, "nfsv4": false, "unixReadWrite": + false, "ruleIndex": 3, "nfsv3": true}, {"unixReadOnly": false, "allowedClients": + "0.0.0.0/0", "cifs": false, "nfsv4": false, "unixReadWrite": true, "ruleIndex": + 1, "nfsv3": true}]}, "creationToken": "cli-vol-000004", "usageThreshold": 107374182400, + "serviceLevel": "Premium", "mountTargets": [{"endIp": "10.12.0.5", "mountTargetId": + "17f68818-47d5-67b6-d560-9a06cfc13e20", "startIp": "10.12.0.5", "netmask": "255.255.255.0", + "fileSystemId": "73c8137f-e164-5fa3-5602-66373e74d2e1", "ipAddress": "10.12.0.5", + "gateway": "10.12.0.1", "provisioningState": "Succeeded"}]}, "location": "westcentralus"}' headers: Accept: - application/json @@ -1982,34 +1959,34 @@ interactions: Connection: - keep-alive Content-Length: - - '707' + - '1032' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A05%3A07.7276405Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_f7903f64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a20e48b1-7985-52ab-d5a5-cf3c74b6803e","fileSystemId":"c5b2534f-bdb4-8b0b-d53c-99a67fdcc54c","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A36%3A30.4793943Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7b9eb1bf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"17f68818-47d5-67b6-d560-9a06cfc13e20","fileSystemId":"73c8137f-e164-5fa3-5602-66373e74d2e1","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1763' + - '1720' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:05:08 GMT + - Fri, 12 Jul 2019 09:36:34 GMT etag: - - W/"datetime'2019-06-04T16%3A05%3A07.7276405Z'" + - W/"datetime'2019-07-12T09%3A36%3A30.4793943Z'" expires: - '-1' pragma: @@ -2033,51 +2010,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:05:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHNk5WWTIyQVEyRlZLR0ZPM1lNRVU2NTRHVVpFTlYzN3xBQ0M1NTE2RTNFNkUzNDJDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 179259501b1..dcc1116f289 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,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:17:00Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001","name":"cli_tests_rg_000001","location":"westus","tags":{"date":"2019-05-31T16:17:00Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:17:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.038749Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.388042Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf765496-6c53-47df-8872-367355149139?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/31438278-26b7-4844-ac0d-ab907d353a4c?api-version=2019-06-01 cache-control: - no-cache content-length: - - '452' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:12 GMT + - Fri, 12 Jul 2019 13:54:00 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.038749Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.388042Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf765496-6c53-47df-8872-367355149139?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/31438278-26b7-4844-ac0d-ab907d353a4c?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cf765496-6c53-47df-8872-367355149139","name":"cf765496-6c53-47df-8872-367355149139","status":"Succeeded","startTime":"2019-05-31T16:17:10.9027823Z","endTime":"2019-05-31T16:17:11.105933Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/31438278-26b7-4844-ac0d-ab907d353a4c","name":"31438278-26b7-4844-ac0d-ab907d353a4c","status":"Succeeded","startTime":"2019-07-12T13:54:00.2446472Z","endTime":"2019-07-12T13:54:00.5259781Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:44 GMT + - Fri, 12 Jul 2019 13:54:33 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.2328892Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.5131299Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:47 GMT + - Fri, 12 Jul 2019 13:54:35 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.2328892Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.5131299Z'" expires: - '-1' pragma: @@ -232,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.2328892Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.5131299Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:49 GMT + - Fri, 12 Jul 2019 13:54:38 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.2328892Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.5131299Z'" expires: - '-1' pragma: @@ -289,28 +239,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A11.2328892Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.5131299Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:51 GMT + - Fri, 12 Jul 2019 13:54:40 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A11.2328892Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.5131299Z'" expires: - '-1' pragma: @@ -332,51 +282,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:17:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHOjVGQTNNTk00RldKNDNXUlBGTTJNVFBWUUlKTllHUHxCMTU2REREQTc0OTAwRDUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 750e4786fd4..30e12a65fa1 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:20:02Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-05-31T16:20:02Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:20:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.5640493Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A51.8694555Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3af1216f-2cc9-4fe6-8762-52b40a4b722f?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b23e8338-bfd6-44a1-b7d7-a285a21669b2?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:12 GMT + - Fri, 12 Jul 2019 12:50:52 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.5640493Z'" + - W/"datetime'2019-07-12T12%3A50%3A51.8694555Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3af1216f-2cc9-4fe6-8762-52b40a4b722f?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b23e8338-bfd6-44a1-b7d7-a285a21669b2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3af1216f-2cc9-4fe6-8762-52b40a4b722f","name":"3af1216f-2cc9-4fe6-8762-52b40a4b722f","status":"Succeeded","startTime":"2019-05-31T16:20:12.4182751Z","endTime":"2019-05-31T16:20:12.6370375Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b23e8338-bfd6-44a1-b7d7-a285a21669b2","name":"b23e8338-bfd6-44a1-b7d7-a285a21669b2","status":"Succeeded","startTime":"2019-07-12T12:50:51.7454971Z","endTime":"2019-07-12T12:50:52.0267248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:45 GMT + - Fri, 12 Jul 2019 12:51:25 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A20%3A12.7561872Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A50%3A52.0225622Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:48 GMT + - Fri, 12 Jul 2019 12:51:27 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A12.7561872Z'" + - W/"datetime'2019-07-12T12%3A50%3A52.0225622Z'" expires: - '-1' pragma: @@ -219,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -231,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A20%3A52.0664731Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A51%3A31.722297Z''\"","location":"westcentralus","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/eastus2/operationResults/fd1412e5-62c2-4e52-9d60-e01fdf433163?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e8ef20a0-df90-4b97-850d-4f56d713b191?api-version=2019-06-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:20:52 GMT + - Fri, 12 Jul 2019 12:51:32 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A52.0664731Z'" + - W/"datetime'2019-07-12T12%3A51%3A31.722297Z'" expires: - '-1' pragma: @@ -274,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -294,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1412e5-62c2-4e52-9d60-e01fdf433163?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e8ef20a0-df90-4b97-850d-4f56d713b191?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fd1412e5-62c2-4e52-9d60-e01fdf433163","name":"fd1412e5-62c2-4e52-9d60-e01fdf433163","status":"Succeeded","startTime":"2019-05-31T16:20:51.9408011Z","endTime":"2019-05-31T16:20:52.4121864Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e8ef20a0-df90-4b97-850d-4f56d713b191","name":"e8ef20a0-df90-4b97-850d-4f56d713b191","status":"Succeeded","startTime":"2019-07-12T12:51:31.5952175Z","endTime":"2019-07-12T12:51:32.5795591Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:24 GMT + - Fri, 12 Jul 2019 12:52:03 GMT expires: - '-1' pragma: @@ -347,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A20%3A52.5378109Z''\"","location":"eastus2","properties":{"poolId":"84279bd4-c0dd-cb96-d7b0-c32ed73b91cd","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A51%3A32.5748886Z''\"","location":"westcentralus","properties":{"poolId":"ec05bc12-9702-3f34-655b-e036c77908e8","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '656' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:27 GMT + - Fri, 12 Jul 2019 12:52:04 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A52.5378109Z'" + - W/"datetime'2019-07-12T12%3A51%3A32.5748886Z'" expires: - '-1' pragma: @@ -402,28 +352,28 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A20%3A52.5378109Z''\"","location":"eastus2","properties":{"poolId":"84279bd4-c0dd-cb96-d7b0-c32ed73b91cd","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A51%3A32.5748886Z''\"","location":"westcentralus","properties":{"poolId":"ec05bc12-9702-3f34-655b-e036c77908e8","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '656' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:29 GMT + - Fri, 12 Jul 2019 12:52:07 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A52.5378109Z'" + - W/"datetime'2019-07-12T12%3A51%3A32.5748886Z'" expires: - '-1' pragma: @@ -459,28 +409,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A20%3A52.5378109Z''\"","location":"eastus2","properties":{"poolId":"84279bd4-c0dd-cb96-d7b0-c32ed73b91cd","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A51%3A32.5748886Z''\"","location":"westcentralus","properties":{"poolId":"ec05bc12-9702-3f34-655b-e036c77908e8","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '656' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:21:31 GMT + - Fri, 12 Jul 2019 12:52:07 GMT etag: - - W/"datetime'2019-05-31T16%3A20%3A52.5378109Z'" + - W/"datetime'2019-07-12T12%3A51%3A32.5748886Z'" expires: - '-1' pragma: @@ -502,51 +452,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:21:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHSjJWVEo1NVU3Uk9XQ1FKWEZUUEFWNldDVE5EUFJTVnxBRjlFNTA4RDA5MkJGNUVBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - status: - code: 202 - message: Accepted version: 1 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 3ead4ed1597..92b0da684d7 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T16:19:06Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"date":"2019-06-04T16:19:06Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:19:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '124' + - '130' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"d49d7447-57dd-4e44-b62e-bcf5d44a9555\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"91fb7d3d-9179-4a93-8fa8-7ec5a1b99892\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"3d1bebf4-e566-4479-a1c8-564fa1b60fc7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4054bf42-a8dc-41e1-96e7-4a61a4309f04\"\ ,\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\":\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/e4f45213-4d68-49ae-8533-920a820ccee1?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52726d29-9e25-434a-82b6-4685e23a0c52?api-version=2019-04-01 cache-control: - no-cache content-length: - - '789' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:14 GMT + - Fri, 12 Jul 2019 10:28:19 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - cd1f7153-2f54-46d4-af38-209d5d3352ae x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/e4f45213-4d68-49ae-8533-920a820ccee1?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52726d29-9e25-434a-82b6-4685e23a0c52?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:18 GMT + - Fri, 12 Jul 2019 10:28:23 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - ab2ffff4-7675-4879-a4e5-479930dd07f2 status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"6efb18df-2543-40f9-a7d8-e0cece8dd9f4\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"aa8746cd-c9c0-4b3d-ab9a-2d780049c79d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"3d1bebf4-e566-4479-a1c8-564fa1b60fc7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4054bf42-a8dc-41e1-96e7-4a61a4309f04\"\ ,\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\":\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:19 GMT + - Fri, 12 Jul 2019 10:28:24 GMT etag: - - W/"6efb18df-2543-40f9-a7d8-e0cece8dd9f4" + - W/"aa8746cd-c9c0-4b3d-ab9a-2d780049c79d" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 7ccb5467-d5a0-4f88-bb3c-f61cfd00614c status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"6efb18df-2543-40f9-a7d8-e0cece8dd9f4\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"aa8746cd-c9c0-4b3d-ab9a-2d780049c79d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"3d1bebf4-e566-4479-a1c8-564fa1b60fc7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4054bf42-a8dc-41e1-96e7-4a61a4309f04\"\ ,\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\":\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:20 GMT + - Fri, 12 Jul 2019 10:28:25 GMT etag: - - W/"6efb18df-2543-40f9-a7d8-e0cece8dd9f4" + - W/"aa8746cd-c9c0-4b3d-ab9a-2d780049c79d" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - ba1e0d72-a2b0-4474-8534-265804917c3c status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "etag": "W/\"6efb18df-2543-40f9-a7d8-e0cece8dd9f4\"", "location": "eastus2", + "etag": "W/\"aa8746cd-c9c0-4b3d-ab9a-2d780049c79d\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-lefr-02", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "3d1bebf4-e566-4479-a1c8-564fa1b60fc7", + {"dnsServers": []}, "resourceGuid": "4054bf42-a8dc-41e1-96e7-4a61a4309f04", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '771' + - '777' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"fdb45716-6437-4956-b2e1-af4a42a30e9c\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"f85ab017-f558-49ed-b9d4-0259d56148b3\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"3d1bebf4-e566-4479-a1c8-564fa1b60fc7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4054bf42-a8dc-41e1-96e7-4a61a4309f04\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"fdb45716-6437-4956-b2e1-af4a42a30e9c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"f85ab017-f558-49ed-b9d4-0259d56148b3\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"fdb45716-6437-4956-b2e1-af4a42a30e9c\\\ + ,\r\n \"etag\": \"W/\\\"f85ab017-f558-49ed-b9d4-0259d56148b3\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/ddd2124e-3e9c-4ac1-a06f-86a624cf4b11?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d263f6f6-2b6d-405e-9137-e14b1e54f635?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2250' + - '2371' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:21 GMT + - Fri, 12 Jul 2019 10:28:26 GMT expires: - '-1' pragma: @@ -368,8 +328,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 98d63154-29f4-4e06-9337-dc595975d84a x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ddd2124e-3e9c-4ac1-a06f-86a624cf4b11?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d263f6f6-2b6d-405e-9137-e14b1e54f635?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:24 GMT + - Fri, 12 Jul 2019 10:28:30 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - f1d8ba03-17c0-4a6f-8f33-e3172bad4289 status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"f0a4475b-28c7-46e1-a793-97ec8bb345ab\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"95969708-3d0e-446c-9922-d21c1f9e9711\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"3d1bebf4-e566-4479-a1c8-564fa1b60fc7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4054bf42-a8dc-41e1-96e7-4a61a4309f04\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"f0a4475b-28c7-46e1-a793-97ec8bb345ab\\\"\"\ + ,\r\n \"etag\": \"W/\\\"95969708-3d0e-446c-9922-d21c1f9e9711\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"f0a4475b-28c7-46e1-a793-97ec8bb345ab\\\ + ,\r\n \"etag\": \"W/\\\"95969708-3d0e-446c-9922-d21c1f9e9711\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2252' + - '2373' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:24 GMT + - Fri, 12 Jul 2019 10:28:31 GMT etag: - - W/"f0a4475b-28c7-46e1-a793-97ec8bb345ab" + - W/"95969708-3d0e-446c-9922-d21c1f9e9711" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - af36dff7-8087-4262-a925-7a12fe7d8886 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A29.3347144Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A35.7262596Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0025b1b1-bf87-467d-9146-5fcf7820cabb?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5c5cf23-c014-45c7-b3e2-c5ac082f36fb?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:29 GMT + - Fri, 12 Jul 2019 10:28:35 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A29.3347144Z'" + - W/"datetime'2019-07-12T10%3A28%3A35.7262596Z'" expires: - '-1' pragma: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0025b1b1-bf87-467d-9146-5fcf7820cabb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5c5cf23-c014-45c7-b3e2-c5ac082f36fb?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0025b1b1-bf87-467d-9146-5fcf7820cabb","name":"0025b1b1-bf87-467d-9146-5fcf7820cabb","status":"Succeeded","startTime":"2019-06-04T16:19:29.1721621Z","endTime":"2019-06-04T16:19:29.4065324Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5c5cf23-c014-45c7-b3e2-c5ac082f36fb","name":"e5c5cf23-c014-45c7-b3e2-c5ac082f36fb","status":"Succeeded","startTime":"2019-07-12T10:28:35.5697359Z","endTime":"2019-07-12T10:28:35.8561348Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:00 GMT + - Fri, 12 Jul 2019 10:29:06 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A29.5379013Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A35.8493453Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:01 GMT + - Fri, 12 Jul 2019 10:29:08 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A29.5379013Z'" + - W/"datetime'2019-07-12T10%3A28%3A35.8493453Z'" expires: - '-1' pragma: @@ -665,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A04.559164Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A12.7811437Z''\"","location":"westcentralus","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/eastus2/operationResults/446abcb0-ed46-411a-92c0-57b0ead81b70?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d37deeff-9963-4838-a508-8dd979c9f9da?api-version=2019-06-01 cache-control: - no-cache content-length: - - '541' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:04 GMT + - Fri, 12 Jul 2019 10:29:13 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A04.559164Z'" + - W/"datetime'2019-07-12T10%3A29%3A12.7811437Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/446abcb0-ed46-411a-92c0-57b0ead81b70?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d37deeff-9963-4838-a508-8dd979c9f9da?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/446abcb0-ed46-411a-92c0-57b0ead81b70","name":"446abcb0-ed46-411a-92c0-57b0ead81b70","status":"Succeeded","startTime":"2019-06-04T16:20:04.4031244Z","endTime":"2019-06-04T16:20:04.9344038Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d37deeff-9963-4838-a508-8dd979c9f9da","name":"d37deeff-9963-4838-a508-8dd979c9f9da","status":"Succeeded","startTime":"2019-07-12T10:29:12.6536618Z","endTime":"2019-07-12T10:29:13.2005869Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:35 GMT + - Fri, 12 Jul 2019 10:29:44 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A05.0776438Z''\"","location":"eastus2","properties":{"poolId":"b5b1b070-b65d-2b27-6887-28a98b99303b","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A13.1944324Z''\"","location":"westcentralus","properties":{"poolId":"96f043e8-28a9-0870-949c-b9578664bff5","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:36 GMT + - Fri, 12 Jul 2019 10:29:45 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A05.0776438Z'" + - W/"datetime'2019-07-12T10%3A29%3A13.1944324Z'" expires: - '-1' pragma: @@ -837,7 +805,7 @@ interactions: - request: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -848,37 +816,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '395' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A39.9689621Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A50.1782635Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 cache-control: - no-cache content-length: - - '904' + - '910' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:39 GMT + - Fri, 12 Jul 2019 10:29:50 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A39.9689621Z'" + - W/"datetime'2019-07-12T10%3A29%3A50.1782635Z'" expires: - '-1' pragma: @@ -892,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -913,24 +881,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc","name":"cfc73631-d363-4fd4-9f80-ffeabdbeaafc","status":"Creating","startTime":"2019-06-04T16:20:39.7821936Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:10 GMT + - Fri, 12 Jul 2019 10:30:22 GMT expires: - '-1' pragma: @@ -967,24 +935,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc","name":"cfc73631-d363-4fd4-9f80-ffeabdbeaafc","status":"Creating","startTime":"2019-06-04T16:20:39.7821936Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:42 GMT + - Fri, 12 Jul 2019 10:30:55 GMT expires: - '-1' pragma: @@ -1021,24 +989,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc","name":"cfc73631-d363-4fd4-9f80-ffeabdbeaafc","status":"Creating","startTime":"2019-06-04T16:20:39.7821936Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:22:12 GMT + - Fri, 12 Jul 2019 10:31:28 GMT expires: - '-1' pragma: @@ -1075,24 +1043,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc","name":"cfc73631-d363-4fd4-9f80-ffeabdbeaafc","status":"Creating","startTime":"2019-06-04T16:20:39.7821936Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:22:43 GMT + - Fri, 12 Jul 2019 10:31:59 GMT expires: - '-1' pragma: @@ -1129,24 +1097,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/cfc73631-d363-4fd4-9f80-ffeabdbeaafc","name":"cfc73631-d363-4fd4-9f80-ffeabdbeaafc","status":"Succeeded","startTime":"2019-06-04T16:20:39.7821936Z","endTime":"2019-06-04T16:23:09.1995419Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:13 GMT + - Fri, 12 Jul 2019 10:32:31 GMT expires: - '-1' pragma: @@ -1183,26 +1151,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A23%3A09.2331592Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"7816e9e3-597a-086a-7cc0-48e0ceeefdd0","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_431de7e5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7f697df9-aec2-8e29-17e4-4c2599c70ff1","fileSystemId":"7816e9e3-597a-086a-7cc0-48e0ceeefdd0","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.4"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1625' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:15 GMT - etag: - - W/"datetime'2019-06-04T16%3A23%3A09.2331592Z'" + - Fri, 12 Jul 2019 10:33:01 GMT expires: - '-1' pragma: @@ -1225,45 +1191,92 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "7816e9e3-597a-086a-7cc0-48e0ceeefdd0"}, - "location": "eastus2"}' + 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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:33: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: - - -g -a -p -v -s -l --file-system-id + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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","etag":"6/4/2019 - 4:23:22 PM","location":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"659fa05b-f1ad-0ce5-74f2-17ec1ee9beb2","fileSystemId":"7816e9e3-597a-086a-7cc0-48e0ceeefdd0","name":"cli-sn-000005","created":"2019-06-04T16:23:19Z"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '777' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:22 GMT + - Fri, 12 Jul 2019 10:34:04 GMT expires: - '-1' pragma: @@ -1274,15 +1287,17 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1291,32 +1306,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 --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"659fa05b-f1ad-0ce5-74f2-17ec1ee9beb2","fileSystemId":"7816e9e3-597a-086a-7cc0-48e0ceeefdd0","name":"cli-sn-000005","created":"2019-06-04T16:23:19Z"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:23 GMT + - Fri, 12 Jul 2019 10:34:34 GMT expires: - '-1' pragma: @@ -1346,32 +1360,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --ids + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"659fa05b-f1ad-0ce5-74f2-17ec1ee9beb2","fileSystemId":"7816e9e3-597a-086a-7cc0-48e0ceeefdd0","name":"cli-sn-000005","created":"2019-06-04T16:23:19Z"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:24 GMT + - Fri, 12 Jul 2019 10:35:05 GMT expires: - '-1' pragma: @@ -1401,43 +1414,762 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 response: body: - string: !!python/unicode '' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '0' + - '643' + content-type: + - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:27 GMT + - Fri, 12 Jul 2019 10:35: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:36:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:36:39 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVUjJQSFRZUkU0VElPTENYSTVKV1BCUTY3WkEzRFZRTVBBWnwxQTcyNzFFREI4RDdFRTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-powered-by: + - ASP.NET status: - code: 202 - message: Accepted + 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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:37:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:37:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:38: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Creating","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:38: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0d89b365-caf8-4591-9264-e57376a623d2","name":"0d89b365-caf8-4591-9264-e57376a623d2","status":"Succeeded","startTime":"2019-07-12T10:29:50.0468346Z","endTime":"2019-07-12T10:39:01.6627542Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:39: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A39%3A01.655469Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_658e7a86","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"915ea024-609c-c49b-35cb-947f236dae9e","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.6"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1581' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:39:19 GMT + etag: + - W/"datetime'2019-07-12T10%3A39%3A01.655469Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": {"fileSystemId": "d3254864-755f-22b9-94a1-898e60e92f18"}, + "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + Content-Length: + - '101' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","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/westcentralus/operationResults/2927fffd-5ddc-480b-83f2-a16b37f6d326?api-version=2019-06-01 + cache-control: + - no-cache + content-length: + - '668' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:39:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2927fffd-5ddc-480b-83f2-a16b37f6d326?api-version=2019-06-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 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/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2927fffd-5ddc-480b-83f2-a16b37f6d326?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2927fffd-5ddc-480b-83f2-a16b37f6d326","name":"2927fffd-5ddc-480b-83f2-a16b37f6d326","status":"Succeeded","startTime":"2019-07-12T10:39:24.9906798Z","endTime":"2019-07-12T10:39:27.8344831Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:39: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 snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"38c66414-f8a4-f3d5-ad6b-f802df9d2d6b","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","name":"cli-sn-000005","created":"2019-07-12T10:39:25Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:40: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 snapshot show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"38c66414-f8a4-f3d5-ad6b-f802df9d2d6b","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","name":"cli-sn-000005","created":"2019-07-12T10:39:25Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:40: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 snapshot show + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"38c66414-f8a4-f3d5-ad6b-f802df9d2d6b","fileSystemId":"d3254864-755f-22b9-94a1-898e60e92f18","name":"cli-sn-000005","created":"2019-07-12T10:39:25Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 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 2220f8a1ea5..19bf8938d7f 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T15:55:04Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T15:55:04Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:55:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"f52ba018-7154-4650-89fe-880be8f61f7b\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"078b7fe7-d1e4-47ce-b8d3-6e2648fbad3c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6d754925-6b33-4759-a767-9e712c14583b\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4d170987-f839-426a-9d62-cd76441d5b42\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/c2aba5e6-3cd4-4a7e-a175-76e3bc4a76e1?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ceca1a22-2057-4a27-bc86-74b03be5dbda?api-version=2019-04-01 cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:12 GMT + - Fri, 12 Jul 2019 09:27:51 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 907c0353-06c7-401f-9d82-3922e966f065 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/c2aba5e6-3cd4-4a7e-a175-76e3bc4a76e1?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ceca1a22-2057-4a27-bc86-74b03be5dbda?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:15 GMT + - Fri, 12 Jul 2019 09:27:54 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 52d1da7c-a98d-40bc-b2d4-658887c8d2d8 status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"7ec0e7d7-5be6-4b8c-ad4b-2067a873ac2d\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"99567ee0-efc1-4788-8de3-ba75e0a8d375\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6d754925-6b33-4759-a767-9e712c14583b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4d170987-f839-426a-9d62-cd76441d5b42\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:15 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"7ec0e7d7-5be6-4b8c-ad4b-2067a873ac2d" + - W/"99567ee0-efc1-4788-8de3-ba75e0a8d375" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 9e679b04-c769-420f-a207-5eb170149faa status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"7ec0e7d7-5be6-4b8c-ad4b-2067a873ac2d\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"99567ee0-efc1-4788-8de3-ba75e0a8d375\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6d754925-6b33-4759-a767-9e712c14583b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4d170987-f839-426a-9d62-cd76441d5b42\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:16 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"7ec0e7d7-5be6-4b8c-ad4b-2067a873ac2d" + - W/"99567ee0-efc1-4788-8de3-ba75e0a8d375" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 08d089da-2630-4a47-819c-eec76e8bce27 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "etag": "W/\"7ec0e7d7-5be6-4b8c-ad4b-2067a873ac2d\"", "location": "eastus2", + "etag": "W/\"99567ee0-efc1-4788-8de3-ba75e0a8d375\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.12.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "6d754925-6b33-4759-a767-9e712c14583b", + {"dnsServers": []}, "resourceGuid": "4d170987-f839-426a-9d62-cd76441d5b42", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '779' + - '785' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"593bf486-45f0-48af-b72e-cf97826adbe0\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"d93ceeee-9a2b-4d00-bbf3-1df98d7c613c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"6d754925-6b33-4759-a767-9e712c14583b\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4d170987-f839-426a-9d62-cd76441d5b42\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"593bf486-45f0-48af-b72e-cf97826adbe0\\\"\"\ + ,\r\n \"etag\": \"W/\\\"d93ceeee-9a2b-4d00-bbf3-1df98d7c613c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"593bf486-45f0-48af-b72e-cf97826adbe0\\\ + ,\r\n \"etag\": \"W/\\\"d93ceeee-9a2b-4d00-bbf3-1df98d7c613c\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/1e2934c1-2b15-4036-a223-1c40b86d9436?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8486b132-ec12-4ceb-9f25-e5f913a801ef?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2278' + - '2399' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:17 GMT + - Fri, 12 Jul 2019 09:27:58 GMT expires: - '-1' pragma: @@ -368,8 +328,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 210b9af0-704e-4c1e-88c6-d9eb77dc34e4 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/1e2934c1-2b15-4036-a223-1c40b86d9436?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8486b132-ec12-4ceb-9f25-e5f913a801ef?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:21 GMT + - Fri, 12 Jul 2019 09:28:02 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 64f9be96-0a64-47df-b761-ee28dcfb57be status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"980f6baf-9ab8-4eba-ade8-baf2e0e68d39\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"28a792d3-b60c-4cd9-9372-7ceb90254056\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"6d754925-6b33-4759-a767-9e712c14583b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4d170987-f839-426a-9d62-cd76441d5b42\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"980f6baf-9ab8-4eba-ade8-baf2e0e68d39\\\"\"\ + ,\r\n \"etag\": \"W/\\\"28a792d3-b60c-4cd9-9372-7ceb90254056\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"980f6baf-9ab8-4eba-ade8-baf2e0e68d39\\\ + ,\r\n \"etag\": \"W/\\\"28a792d3-b60c-4cd9-9372-7ceb90254056\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2280' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:22 GMT + - Fri, 12 Jul 2019 09:28:03 GMT etag: - - W/"980f6baf-9ab8-4eba-ade8-baf2e0e68d39" + - W/"28a792d3-b60c-4cd9-9372-7ceb90254056" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 4067c8fc-1d9b-4431-81f2-40bf7a97c2f1 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A25.2440717Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A07.2741429Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ea0969f3-df4f-4270-bcf0-d30995139638?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/de55c44b-a7e8-49f2-89eb-d88b9375635a?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:24 GMT + - Fri, 12 Jul 2019 09:28:07 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A25.2440717Z'" + - W/"datetime'2019-07-12T09%3A28%3A07.2741429Z'" expires: - '-1' pragma: @@ -550,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ea0969f3-df4f-4270-bcf0-d30995139638?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/de55c44b-a7e8-49f2-89eb-d88b9375635a?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ea0969f3-df4f-4270-bcf0-d30995139638","name":"ea0969f3-df4f-4270-bcf0-d30995139638","status":"Succeeded","startTime":"2019-06-04T15:55:25.0794458Z","endTime":"2019-06-04T15:55:25.360709Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/de55c44b-a7e8-49f2-89eb-d88b9375635a","name":"de55c44b-a7e8-49f2-89eb-d88b9375635a","status":"Succeeded","startTime":"2019-07-12T09:28:07.1430828Z","endTime":"2019-07-12T09:28:07.4086309Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:56 GMT + - Fri, 12 Jul 2019 09:28:38 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A25.5133246Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A07.4002315Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:57 GMT + - Fri, 12 Jul 2019 09:28:39 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A25.5133246Z'" + - W/"datetime'2019-07-12T09%3A28%3A07.4002315Z'" expires: - '-1' pragma: @@ -666,7 +634,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag2": "Value1"}}' + "location": "westcentralus", "tags": {"Tag2": "Value1"}}' headers: Accept: - application/json @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '123' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A00.1978954Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A44.819364Z''\"","location":"westcentralus","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/eastus2/operationResults/0f08c89f-00e7-4e38-9385-bdcf0bbc284e?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2127ea9-575c-430a-8a1e-605dbf6d8fe3?api-version=2019-06-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:00 GMT + - Fri, 12 Jul 2019 09:28:45 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A00.1978954Z'" + - W/"datetime'2019-07-12T09%3A28%3A44.819364Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0f08c89f-00e7-4e38-9385-bdcf0bbc284e?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2127ea9-575c-430a-8a1e-605dbf6d8fe3?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/0f08c89f-00e7-4e38-9385-bdcf0bbc284e","name":"0f08c89f-00e7-4e38-9385-bdcf0bbc284e","status":"Succeeded","startTime":"2019-06-04T15:56:00.0311854Z","endTime":"2019-06-04T15:56:00.9843256Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2127ea9-575c-430a-8a1e-605dbf6d8fe3","name":"d2127ea9-575c-430a-8a1e-605dbf6d8fe3","status":"Succeeded","startTime":"2019-07-12T09:28:44.6701458Z","endTime":"2019-07-12T09:28:45.2014074Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:30 GMT + - Fri, 12 Jul 2019 09:29:17 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A01.0757197Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"poolId":"c00b6e62-925f-da20-1a3f-216051fbffc4","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A45.1976291Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"poolId":"c2a40bf2-c209-6813-bc20-5d439e92c752","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' + - '681' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:31 GMT + - Fri, 12 Jul 2019 09:29:19 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A01.0757197Z'" + - W/"datetime'2019-07-12T09%3A28%3A45.1976291Z'" expires: - '-1' pragma: @@ -835,10 +803,10 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"usageThreshold": + body: !!python/unicode '{"location": "westcentralus", "properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "tags": {"Tag2": - "Value1"}}' + "protocolTypes": ["NFSv4"], "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, + "tags": {"Tag2": "Value1"}}' headers: Accept: - application/json @@ -849,37 +817,37 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '457' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A36.2158513Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A29%3A25.9220684Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv4"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 cache-control: - no-cache content-length: - - '935' + - '967' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:36 GMT + - Fri, 12 Jul 2019 09:29:26 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A36.2158513Z'" + - W/"datetime'2019-07-12T09%3A29%3A25.9220684Z'" expires: - '-1' pragma: @@ -893,7 +861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -912,26 +880,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Creating","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:07 GMT + - Fri, 12 Jul 2019 09:29:59 GMT expires: - '-1' pragma: @@ -966,26 +934,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Creating","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:37 GMT + - Fri, 12 Jul 2019 09:30:31 GMT expires: - '-1' pragma: @@ -1020,26 +988,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Creating","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:09 GMT + - Fri, 12 Jul 2019 09:31:04 GMT expires: - '-1' pragma: @@ -1074,26 +1042,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Creating","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:40 GMT + - Fri, 12 Jul 2019 09:31:36 GMT expires: - '-1' pragma: @@ -1128,26 +1096,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Creating","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:11 GMT + - Fri, 12 Jul 2019 09:32:07 GMT expires: - '-1' pragma: @@ -1182,26 +1150,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b77b0213-000f-43e3-84a2-8a1dc9308b95","name":"b77b0213-000f-43e3-84a2-8a1dc9308b95","status":"Succeeded","startTime":"2019-06-04T15:56:36.0700981Z","endTime":"2019-06-04T15:59:39.1368811Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:42 GMT + - Fri, 12 Jul 2019 09:32:38 GMT expires: - '-1' pragma: @@ -1236,28 +1204,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --creation-token --vnet --subnet --tags + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A59%3A39.1718259Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_599d4a49","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"de2875eb-fd4b-2aba-afdb-fb16f42505db","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1660' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:43 GMT - etag: - - W/"datetime'2019-06-04T15%3A59%3A39.1718259Z'" + - Fri, 12 Jul 2019 09:33:09 GMT expires: - '-1' pragma: @@ -1287,34 +1253,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A59%3A39.1718259Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_599d4a49","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"de2875eb-fd4b-2aba-afdb-fb16f42505db","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1660' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:44 GMT - etag: - - W/"datetime'2019-06-04T15%3A59%3A39.1718259Z'" + - Fri, 12 Jul 2019 09:33:42 GMT expires: - '-1' pragma: @@ -1344,34 +1307,85 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --ids + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A59%3A39.1718259Z''\"","location":"eastus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_599d4a49","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"de2875eb-fd4b-2aba-afdb-fb16f42505db","fileSystemId":"e74d7060-3a23-19d7-24e4-69da753a86b3","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1660' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:46 GMT - etag: - - W/"datetime'2019-06-04T15%3A59%3A39.1718259Z'" + - Fri, 12 Jul 2019 09:34: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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:34:47 GMT expires: - '-1' pragma: @@ -1401,43 +1415,598 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:35: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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:35: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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 response: body: - string: !!python/unicode '' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '0' + - '643' + content-type: + - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:57 GMT + - Fri, 12 Jul 2019 09:36:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHSUQ2SUtSSURKR1JQV1JRU1lWVUJERFBLSzdCRVdWWHxCMzUxRDI2RTQ2RTA1OUNELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-powered-by: + - ASP.NET status: - code: 202 - message: Accepted + 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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:36: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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:37:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:37:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Creating","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:38: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 --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/865c4064-a1a5-400f-8796-24eaad34ab83","name":"865c4064-a1a5-400f-8796-24eaad34ab83","status":"Succeeded","startTime":"2019-07-12T09:29:25.7972703Z","endTime":"2019-07-12T09:38:50.0087766Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:39:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet --protocol-types --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A50.007803Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_03a81c7c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b09955e7-e01a-a6fa-05a9-bc2589e250cd","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","startIp":"10.12.0.4","endIp":"10.12.0.4","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.4"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:39:05 GMT + etag: + - W/"datetime'2019-07-12T09%3A38%3A50.007803Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume show + Connection: + - keep-alive + ParameterSetName: + - --resource-group -a -p -v + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A50.007803Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_03a81c7c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b09955e7-e01a-a6fa-05a9-bc2589e250cd","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","startIp":"10.12.0.4","endIp":"10.12.0.4","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.4"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:39:08 GMT + etag: + - W/"datetime'2019-07-12T09%3A38%3A50.007803Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume show + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A50.007803Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_03a81c7c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b09955e7-e01a-a6fa-05a9-bc2589e250cd","fileSystemId":"788bea8d-f832-2481-d7d1-228e77caebe1","startIp":"10.12.0.4","endIp":"10.12.0.4","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.4"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:39:11 GMT + etag: + - W/"datetime'2019-07-12T09%3A38%3A50.007803Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-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_list_accounts.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml index a7944bab730..e22c1f4c969 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,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:17:00Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001","name":"cli_tests_rg_000001","location":"westus","tags":{"date":"2019-05-31T16:17:00Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:17:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '57' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A10.4353127Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.8583714Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5212d815-a2a1-47ef-8160-eab6fa1e293b?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/58c28dd9-f8f9-477f-a43c-e0e42f5c071f?api-version=2019-06-01 cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:10 GMT + - Fri, 12 Jul 2019 13:54:01 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A10.4353127Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.8583714Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5212d815-a2a1-47ef-8160-eab6fa1e293b?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/58c28dd9-f8f9-477f-a43c-e0e42f5c071f?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5212d815-a2a1-47ef-8160-eab6fa1e293b","name":"5212d815-a2a1-47ef-8160-eab6fa1e293b","status":"Succeeded","startTime":"2019-05-31T16:17:10.2622244Z","endTime":"2019-05-31T16:17:10.5121104Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/58c28dd9-f8f9-477f-a43c-e0e42f5c071f","name":"58c28dd9-f8f9-477f-a43c-e0e42f5c071f","status":"Succeeded","startTime":"2019-07-12T13:54:00.7230844Z","endTime":"2019-07-12T13:54:00.9888487Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:44 GMT + - Fri, 12 Jul 2019 13:54:32 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A10.6334558Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.9844597Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:46 GMT + - Fri, 12 Jul 2019 13:54:35 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A10.6334558Z'" + - W/"datetime'2019-07-12T13%3A54%3A00.9844597Z'" expires: - '-1' pragma: @@ -219,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -230,36 +180,36 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '57' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A51.8811821Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A39.7225217Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e1ba980-b575-4ae8-be90-68af4a792eaf?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/146897ff-ddcf-4207-b294-c183227d6274?api-version=2019-06-01 cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:17:52 GMT + - Fri, 12 Jul 2019 13:54:40 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A51.8811821Z'" + - W/"datetime'2019-07-12T13%3A54%3A39.7225217Z'" expires: - '-1' pragma: @@ -273,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -293,24 +243,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e1ba980-b575-4ae8-be90-68af4a792eaf?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/146897ff-ddcf-4207-b294-c183227d6274?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5e1ba980-b575-4ae8-be90-68af4a792eaf","name":"5e1ba980-b575-4ae8-be90-68af4a792eaf","status":"Succeeded","startTime":"2019-05-31T16:17:51.6928596Z","endTime":"2019-05-31T16:17:51.9428965Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/146897ff-ddcf-4207-b294-c183227d6274","name":"146897ff-ddcf-4207-b294-c183227d6274","status":"Succeeded","startTime":"2019-07-12T13:54:39.5840842Z","endTime":"2019-07-12T13:54:39.8686247Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:24 GMT + - Fri, 12 Jul 2019 13:55:11 GMT expires: - '-1' pragma: @@ -346,26 +296,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A52.0713195Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A39.8526111Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:27 GMT + - Fri, 12 Jul 2019 13:55:12 GMT etag: - - W/"datetime'2019-05-31T16%3A17%3A52.0713195Z'" + - W/"datetime'2019-07-12T13%3A54%3A39.8526111Z'" expires: - '-1' pragma: @@ -401,26 +351,26 @@ interactions: ParameterSetName: - -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A52.0713195Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A17%3A10.6334558Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A39.8526111Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000003"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A54%3A00.9844597Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '969' + - '981' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:29 GMT + - Fri, 12 Jul 2019 13:55:14 GMT expires: - '-1' pragma: @@ -458,12 +408,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -471,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/eastus2/operationResults/df206f14-c699-4b14-8ae3-c43c009db2ae?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d376f83f-d803-4ba3-98f5-7ede5e79f82e?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:18:32 GMT + - Fri, 12 Jul 2019 13:55:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/df206f14-c699-4b14-8ae3-c43c009db2ae?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d376f83f-d803-4ba3-98f5-7ede5e79f82e?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -513,24 +463,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/df206f14-c699-4b14-8ae3-c43c009db2ae?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d376f83f-d803-4ba3-98f5-7ede5e79f82e?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/df206f14-c699-4b14-8ae3-c43c009db2ae","name":"df206f14-c699-4b14-8ae3-c43c009db2ae","status":"Succeeded","startTime":"2019-05-31T16:18:32.1318183Z","endTime":"2019-05-31T16:18:32.3035726Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d376f83f-d803-4ba3-98f5-7ede5e79f82e","name":"d376f83f-d803-4ba3-98f5-7ede5e79f82e","status":"Succeeded","startTime":"2019-07-12T13:55:16.9772682Z","endTime":"2019-07-12T13:55:17.1335373Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:04 GMT + - Fri, 12 Jul 2019 13:55:48 GMT expires: - '-1' pragma: @@ -568,12 +518,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -581,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/eastus2/operationResults/21fa7b2d-f0a7-4969-a7f1-1b4ee9abee6f?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/773290c6-b075-4ce5-aaf1-315a4eba3ab4?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:19:07 GMT + - Fri, 12 Jul 2019 13:55:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/21fa7b2d-f0a7-4969-a7f1-1b4ee9abee6f?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/773290c6-b075-4ce5-aaf1-315a4eba3ab4?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -623,24 +573,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/21fa7b2d-f0a7-4969-a7f1-1b4ee9abee6f?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/773290c6-b075-4ce5-aaf1-315a4eba3ab4?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/21fa7b2d-f0a7-4969-a7f1-1b4ee9abee6f","name":"21fa7b2d-f0a7-4969-a7f1-1b4ee9abee6f","status":"Succeeded","startTime":"2019-05-31T16:19:07.9029703Z","endTime":"2019-05-31T16:19:08.0748321Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/773290c6-b075-4ce5-aaf1-315a4eba3ab4","name":"773290c6-b075-4ce5-aaf1-315a4eba3ab4","status":"Succeeded","startTime":"2019-07-12T13:55:51.7748316Z","endTime":"2019-07-12T13:55:51.9622942Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:38 GMT + - Fri, 12 Jul 2019 13:56:22 GMT expires: - '-1' pragma: @@ -676,16 +626,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: @@ -693,65 +645,26 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:19:40 GMT + - Fri, 12 Jul 2019 13:56: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: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:19:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHOjVGNTNRRERDWlpNWEVKV1VVWUFOUlFZRDRPUENITnxEOUZGREFBQTBCMjU4OEQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 17c58ce03ab..e34f6eb6ab4 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T15:21:46Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"date":"2019-06-04T15:21:46Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:22:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '124' + - '130' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"b32324a4-a928-45df-8252-d27fb81129f5\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"72e25c25-43bf-4db6-83a7-e26308735e0a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"5dee712a-6739-40f6-8f3b-97b0d05dac5a\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"90440349-3885-4f23-8008-c45caadb9b03\"\ ,\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\":\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9754ffac-91ff-4afb-b800-f22b8099e8cc?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f952481d-f0bc-485d-af03-559a653236cb?api-version=2019-04-01 cache-control: - no-cache content-length: - - '789' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:09 GMT + - Fri, 12 Jul 2019 12:45:15 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 2fb5a856-448d-4d4f-90d5-17193afbefc2 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9754ffac-91ff-4afb-b800-f22b8099e8cc?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f952481d-f0bc-485d-af03-559a653236cb?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:15 GMT + - Fri, 12 Jul 2019 12:45:20 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 3b81985b-ea26-40a0-b9b8-9d07eaaa9e3e status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"6c46afcb-e106-4ad7-83cf-cc2180e63786\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"9bf44574-9a5e-4bdc-bc4f-1725e21dffb5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"5dee712a-6739-40f6-8f3b-97b0d05dac5a\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90440349-3885-4f23-8008-c45caadb9b03\"\ ,\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\":\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:16 GMT + - Fri, 12 Jul 2019 12:45:21 GMT etag: - - W/"6c46afcb-e106-4ad7-83cf-cc2180e63786" + - W/"9bf44574-9a5e-4bdc-bc4f-1725e21dffb5" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 67d4093a-be32-410d-83b6-83d6fe21356b status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"6c46afcb-e106-4ad7-83cf-cc2180e63786\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"9bf44574-9a5e-4bdc-bc4f-1725e21dffb5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"5dee712a-6739-40f6-8f3b-97b0d05dac5a\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90440349-3885-4f23-8008-c45caadb9b03\"\ ,\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\":\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:18 GMT + - Fri, 12 Jul 2019 12:45:23 GMT etag: - - W/"6c46afcb-e106-4ad7-83cf-cc2180e63786" + - W/"9bf44574-9a5e-4bdc-bc4f-1725e21dffb5" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - f0aaf9ec-0be3-4996-8ed4-03adceae4783 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01", - "etag": "W/\"6c46afcb-e106-4ad7-83cf-cc2180e63786\"", "location": "eastus2", + "etag": "W/\"9bf44574-9a5e-4bdc-bc4f-1725e21dffb5\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-lefr-01", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "5dee712a-6739-40f6-8f3b-97b0d05dac5a", + {"dnsServers": []}, "resourceGuid": "90440349-3885-4f23-8008-c45caadb9b03", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '771' + - '777' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"1a694aeb-dc31-44ff-a191-757916e2a583\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"dc04c7ec-3a58-4e3c-a22d-5357896bfae4\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"5dee712a-6739-40f6-8f3b-97b0d05dac5a\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"90440349-3885-4f23-8008-c45caadb9b03\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"1a694aeb-dc31-44ff-a191-757916e2a583\\\"\"\ + ,\r\n \"etag\": \"W/\\\"dc04c7ec-3a58-4e3c-a22d-5357896bfae4\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"1a694aeb-dc31-44ff-a191-757916e2a583\\\ + ,\r\n \"etag\": \"W/\\\"dc04c7ec-3a58-4e3c-a22d-5357896bfae4\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/62b2732d-4601-4d0b-97c9-5dea4c2cd428?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9384be2c-19b6-40ab-997f-43bf37e2b1c1?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2250' + - '2371' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:20 GMT + - Fri, 12 Jul 2019 12:45:25 GMT expires: - '-1' pragma: @@ -368,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 20d5e2c1-2968-41f8-a096-6e509155e225 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/62b2732d-4601-4d0b-97c9-5dea4c2cd428?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9384be2c-19b6-40ab-997f-43bf37e2b1c1?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:26 GMT + - Fri, 12 Jul 2019 12:45:30 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - e7f170b4-5d2e-4d08-ae80-e748b59abc57 status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"79d1ad24-bed2-42ed-8a3b-8843833f8a96\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"c87c1ca0-28db-4559-af6b-1422b9a07401\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"5dee712a-6739-40f6-8f3b-97b0d05dac5a\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90440349-3885-4f23-8008-c45caadb9b03\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ - ,\r\n \"etag\": \"W/\\\"79d1ad24-bed2-42ed-8a3b-8843833f8a96\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c87c1ca0-28db-4559-af6b-1422b9a07401\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"79d1ad24-bed2-42ed-8a3b-8843833f8a96\\\ + ,\r\n \"etag\": \"W/\\\"c87c1ca0-28db-4559-af6b-1422b9a07401\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2252' + - '2373' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:28 GMT + - Fri, 12 Jul 2019 12:45:32 GMT etag: - - W/"79d1ad24-bed2-42ed-8a3b-8843833f8a96" + - W/"c87c1ca0-28db-4559-af6b-1422b9a07401" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 60dadb1b-5dbc-4ab0-a25e-42bf916135b6 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A22%3A33.9058686Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A45%3A38.8217959Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6cf62afd-9334-43d2-bb6c-6ec786826fcc?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/030eacce-a3cb-4ab7-84f9-6abe97ebf572?api-version=2019-06-01 cache-control: - no-cache content-length: - - '426' + - '432' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:22:34 GMT + - Fri, 12 Jul 2019 12:45:39 GMT etag: - - W/"datetime'2019-06-04T15%3A22%3A33.9058686Z'" + - W/"datetime'2019-07-12T12%3A45%3A38.8217959Z'" expires: - '-1' pragma: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6cf62afd-9334-43d2-bb6c-6ec786826fcc?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/030eacce-a3cb-4ab7-84f9-6abe97ebf572?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6cf62afd-9334-43d2-bb6c-6ec786826fcc","name":"6cf62afd-9334-43d2-bb6c-6ec786826fcc","status":"Succeeded","startTime":"2019-06-04T15:22:33.7338457Z","endTime":"2019-06-04T15:22:33.9525956Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/030eacce-a3cb-4ab7-84f9-6abe97ebf572","name":"030eacce-a3cb-4ab7-84f9-6abe97ebf572","status":"Succeeded","startTime":"2019-07-12T12:45:38.6752807Z","endTime":"2019-07-12T12:45:38.9721564Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '567' + - '573' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:23:08 GMT + - Fri, 12 Jul 2019 12:46:11 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A22%3A34.1000522Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A45%3A38.9598921Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '426' + - '432' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:23:11 GMT + - Fri, 12 Jul 2019 12:46:14 GMT etag: - - W/"datetime'2019-06-04T15%3A22%3A34.1000522Z'" + - W/"datetime'2019-07-12T12%3A45%3A38.9598921Z'" expires: - '-1' pragma: @@ -665,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T15%3A23%3A18.0929186Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T12%3A46%3A20.805121Z''\"","location":"westcentralus","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/eastus2/operationResults/ae00f457-8931-4847-92d0-74ddc46abf0d?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bcc417b2-d4b4-4d22-946c-ae611556a5ee?api-version=2019-06-01 cache-control: - no-cache content-length: - - '508' + - '513' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:23:18 GMT + - Fri, 12 Jul 2019 12:46:21 GMT etag: - - W/"datetime'2019-06-04T15%3A23%3A18.0929186Z'" + - W/"datetime'2019-07-12T12%3A46%3A20.805121Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ae00f457-8931-4847-92d0-74ddc46abf0d?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bcc417b2-d4b4-4d22-946c-ae611556a5ee?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ae00f457-8931-4847-92d0-74ddc46abf0d","name":"ae00f457-8931-4847-92d0-74ddc46abf0d","status":"Succeeded","startTime":"2019-06-04T15:23:17.8970643Z","endTime":"2019-06-04T15:23:26.0849109Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bcc417b2-d4b4-4d22-946c-ae611556a5ee","name":"bcc417b2-d4b4-4d22-946c-ae611556a5ee","status":"Succeeded","startTime":"2019-07-12T12:46:20.6475354Z","endTime":"2019-07-12T12:46:21.2725667Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '598' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:23:51 GMT + - Fri, 12 Jul 2019 12:46:53 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T15%3A23%3A27.7621225Z''\"","location":"eastus2","properties":{"poolId":"fc66cbdb-41d0-c948-f2aa-a45b4e537a0a","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T12%3A46%3A21.2724479Z''\"","location":"westcentralus","properties":{"poolId":"afa322cf-17f0-e518-515a-015d8a677df0","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '599' + - '605' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:23:53 GMT + - Fri, 12 Jul 2019 12:46:54 GMT etag: - - W/"datetime'2019-06-04T15%3A23%3A27.7621225Z'" + - W/"datetime'2019-07-12T12%3A46%3A21.2724479Z'" expires: - '-1' pragma: @@ -838,7 +806,7 @@ interactions: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01", "serviceLevel": "Premium", "creationToken": "cli-volume-lefr-01"}, "location": - "eastus2"}' + "westcentralus"}' headers: Accept: - application/json @@ -849,37 +817,37 @@ interactions: Connection: - keep-alive Content-Length: - - '383' + - '389' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T15%3A24%3A00.910684Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T12%3A46%3A59.1368959Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 cache-control: - no-cache content-length: - - '851' + - '858' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:24:01 GMT + - Fri, 12 Jul 2019 12:46:59 GMT etag: - - W/"datetime'2019-06-04T15%3A24%3A00.910684Z'" + - W/"datetime'2019-07-12T12%3A46%3A59.1368959Z'" expires: - '-1' pragma: @@ -914,24 +882,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Creating","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Creating","startTime":"2019-07-12T12:46:58.99759Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '614' + - '618' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:24:33 GMT + - Fri, 12 Jul 2019 12:47:30 GMT expires: - '-1' pragma: @@ -968,24 +936,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Creating","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Creating","startTime":"2019-07-12T12:46:58.99759Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '614' + - '618' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:25:06 GMT + - Fri, 12 Jul 2019 12:48:01 GMT expires: - '-1' pragma: @@ -1022,24 +990,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Creating","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Creating","startTime":"2019-07-12T12:46:58.99759Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '614' + - '618' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:25:39 GMT + - Fri, 12 Jul 2019 12:48:35 GMT expires: - '-1' pragma: @@ -1076,24 +1044,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Creating","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Creating","startTime":"2019-07-12T12:46:58.99759Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '614' + - '618' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:26:11 GMT + - Fri, 12 Jul 2019 12:49:07 GMT expires: - '-1' pragma: @@ -1130,24 +1098,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Creating","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Creating","startTime":"2019-07-12T12:46:58.99759Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '614' + - '618' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:26:44 GMT + - Fri, 12 Jul 2019 12:49:40 GMT expires: - '-1' pragma: @@ -1184,24 +1152,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","name":"dd9bb0d0-fdc4-43a9-a139-b3b8c739b143","status":"Succeeded","startTime":"2019-06-04T15:24:00.7405761Z","endTime":"2019-06-04T15:26:55.2496718Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c4437d62-b85a-41f7-921d-e1cdfa9087dc","name":"c4437d62-b85a-41f7-921d-e1cdfa9087dc","status":"Succeeded","startTime":"2019-07-12T12:46:58.99759Z","endTime":"2019-07-12T12:49:51.7449555Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '625' + - '629' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:27:16 GMT + - Fri, 12 Jul 2019 12:50:12 GMT expires: - '-1' pragma: @@ -1238,26 +1206,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T15%3A26%3A55.2972944Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c1de4c71-7efc-80b7-5b14-915ae739d045","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_8676c7d2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ba1716a7-4906-0efb-6d42-7436541bbb0f","fileSystemId":"c1de4c71-7efc-80b7-5b14-915ae739d045","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"10.0.0.1","netmask":"255.255.255.0","ipAddress":"10.0.0.4"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T12%3A49%3A51.7344514Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"ca33e720-9566-b828-9126-acbb6ded80c5","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_57ddbcca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"44bad7ed-c8b6-56de-ac11-b116701db963","fileSystemId":"ca33e720-9566-b828-9126-acbb6ded80c5","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"10.0.0.1","netmask":"255.255.255.0","ipAddress":"10.0.0.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1567' + - '1524' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:27:20 GMT + - Fri, 12 Jul 2019 12:50:15 GMT etag: - - W/"datetime'2019-06-04T15%3A26%3A55.2972944Z'" + - W/"datetime'2019-07-12T12%3A49%3A51.7344514Z'" expires: - '-1' pragma: @@ -1293,26 +1261,26 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/ba1716a7-4906-0efb-6d42-7436541bbb0f","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/ba1716a7-4906-0efb-6d42-7436541bbb0f","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"eastus2","properties":{"provisioningState":"Succeeded","mountTargetId":"ba1716a7-4906-0efb-6d42-7436541bbb0f","fileSystemId":"c1de4c71-7efc-80b7-5b14-915ae739d045","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"10.0.0.1","netmask":"255.255.255.0","ipAddress":"10.0.0.4"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/44bad7ed-c8b6-56de-ac11-b116701db963","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/44bad7ed-c8b6-56de-ac11-b116701db963","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westcentralus","properties":{"provisioningState":"Succeeded","mountTargetId":"44bad7ed-c8b6-56de-ac11-b116701db963","fileSystemId":"ca33e720-9566-b828-9126-acbb6ded80c5","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"10.0.0.1","netmask":"255.255.255.0","ipAddress":"10.0.0.4"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:27:23 GMT + - Fri, 12 Jul 2019 12:50:18 GMT expires: - '-1' pragma: @@ -1334,51 +1302,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 15:27:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdZVEFUNlk2WFZIRkc0VzNERU8zTU43MlZSQVlSS0hCNlpQN3xDM0MwMEZCNDJCRjExNTJFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 898c8f30793..7aeb1bdf528 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:23:39Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-05-31T16:23:39Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:23:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A23%3A48.4423034Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A54%3A16.7555697Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ee359c0a-5035-4b49-a4c7-712e8a3124d9?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79c34a55-1055-4ab9-b5f3-fdf82420452b?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:23:49 GMT + - Fri, 12 Jul 2019 12:54:16 GMT etag: - - W/"datetime'2019-05-31T16%3A23%3A48.4423034Z'" + - W/"datetime'2019-07-12T12%3A54%3A16.7555697Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ee359c0a-5035-4b49-a4c7-712e8a3124d9?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79c34a55-1055-4ab9-b5f3-fdf82420452b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/ee359c0a-5035-4b49-a4c7-712e8a3124d9","name":"ee359c0a-5035-4b49-a4c7-712e8a3124d9","status":"Succeeded","startTime":"2019-05-31T16:23:48.3262334Z","endTime":"2019-05-31T16:23:48.5218639Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79c34a55-1055-4ab9-b5f3-fdf82420452b","name":"79c34a55-1055-4ab9-b5f3-fdf82420452b","status":"Succeeded","startTime":"2019-07-12T12:54:16.6261248Z","endTime":"2019-07-12T12:54:16.8917267Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:24:22 GMT + - Fri, 12 Jul 2019 12:54:49 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A23%3A48.6404448Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A54%3A16.8796565Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:24:25 GMT + - Fri, 12 Jul 2019 12:54:52 GMT etag: - - W/"datetime'2019-05-31T16%3A23%3A48.6404448Z'" + - W/"datetime'2019-07-12T12%3A54%3A16.8796565Z'" expires: - '-1' pragma: @@ -220,7 +170,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -231,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '123' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A24%3A32.0564475Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A54%3A58.8219537Z''\"","location":"westcentralus","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/eastus2/operationResults/231340c3-1a03-4e42-b8a9-307256332c64?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6693dd0f-54d6-45e5-b112-15f45457578f?api-version=2019-06-01 cache-control: - no-cache content-length: - - '567' + - '573' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:24:32 GMT + - Fri, 12 Jul 2019 12:54:58 GMT etag: - - W/"datetime'2019-05-31T16%3A24%3A32.0564475Z'" + - W/"datetime'2019-07-12T12%3A54%3A58.8219537Z'" expires: - '-1' pragma: @@ -274,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -294,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/231340c3-1a03-4e42-b8a9-307256332c64?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6693dd0f-54d6-45e5-b112-15f45457578f?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/231340c3-1a03-4e42-b8a9-307256332c64","name":"231340c3-1a03-4e42-b8a9-307256332c64","status":"Succeeded","startTime":"2019-05-31T16:24:31.8973887Z","endTime":"2019-05-31T16:24:32.5075338Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6693dd0f-54d6-45e5-b112-15f45457578f","name":"6693dd0f-54d6-45e5-b112-15f45457578f","status":"Succeeded","startTime":"2019-07-12T12:54:58.6680027Z","endTime":"2019-07-12T12:54:59.2980157Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:05 GMT + - Fri, 12 Jul 2019 12:55:31 GMT expires: - '-1' pragma: @@ -347,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A24%3A32.5788173Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"b10326f9-8c5f-6287-44fe-1fe69f0349c6","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A54%3A59.2872776Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"poolId":"86f57a15-e42e-4e6e-cea2-32b6ee445d7e","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '681' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:08 GMT + - Fri, 12 Jul 2019 12:55:34 GMT etag: - - W/"datetime'2019-05-31T16%3A24%3A32.5788173Z'" + - W/"datetime'2019-07-12T12%3A54%3A59.2872776Z'" expires: - '-1' pragma: @@ -390,7 +340,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -401,36 +351,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '123' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A25%3A14.694913Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A55%3A39.8115836Z''\"","location":"westcentralus","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/eastus2/operationResults/534282ba-e559-48ef-b1e8-5c8cb617e473?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c6e018a2-51bb-4c7b-97d7-b85b1a50f646?api-version=2019-06-01 cache-control: - no-cache content-length: - - '566' + - '573' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:14 GMT + - Fri, 12 Jul 2019 12:55:40 GMT etag: - - W/"datetime'2019-05-31T16%3A25%3A14.694913Z'" + - W/"datetime'2019-07-12T12%3A55%3A39.8115836Z'" expires: - '-1' pragma: @@ -464,24 +414,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/534282ba-e559-48ef-b1e8-5c8cb617e473?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c6e018a2-51bb-4c7b-97d7-b85b1a50f646?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/534282ba-e559-48ef-b1e8-5c8cb617e473","name":"534282ba-e559-48ef-b1e8-5c8cb617e473","status":"Succeeded","startTime":"2019-05-31T16:25:14.5669907Z","endTime":"2019-05-31T16:25:15.0845567Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c6e018a2-51bb-4c7b-97d7-b85b1a50f646","name":"c6e018a2-51bb-4c7b-97d7-b85b1a50f646","status":"Succeeded","startTime":"2019-07-12T12:55:39.6755754Z","endTime":"2019-07-12T12:55:40.2849585Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:46 GMT + - Fri, 12 Jul 2019 12:56:11 GMT expires: - '-1' pragma: @@ -517,26 +467,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A25%3A15.5735424Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"4042de6b-08ed-509b-f8c3-8def005a29c1","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A55%3A40.2799103Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"poolId":"eb32aef8-85fc-9a6d-da98-9caf65723500","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '681' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:46 GMT + - Fri, 12 Jul 2019 12:56:12 GMT etag: - - W/"datetime'2019-05-31T16%3A25%3A15.5735424Z'" + - W/"datetime'2019-07-12T12%3A55%3A40.2799103Z'" expires: - '-1' pragma: @@ -572,26 +522,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A24%3A32.5788173Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"b10326f9-8c5f-6287-44fe-1fe69f0349c6","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-05-31T16%3A25%3A15.5735424Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"4042de6b-08ed-509b-f8c3-8def005a29c1","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A54%3A59.2872776Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"poolId":"86f57a15-e42e-4e6e-cea2-32b6ee445d7e","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-07-12T12%3A55%3A40.2799103Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"poolId":"eb32aef8-85fc-9a6d-da98-9caf65723500","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1363' + - '1375' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:25:49 GMT + - Fri, 12 Jul 2019 12:56:15 GMT expires: - '-1' pragma: @@ -629,12 +579,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -642,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/eastus2/operationResults/a42f828d-2bf9-43f8-a7d7-ca88c707e4a1?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b1a76649-759c-4b8d-9355-4f42db9987e1?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:25:51 GMT + - Fri, 12 Jul 2019 12:56:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a42f828d-2bf9-43f8-a7d7-ca88c707e4a1?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b1a76649-759c-4b8d-9355-4f42db9987e1?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -664,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -684,24 +634,24 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a42f828d-2bf9-43f8-a7d7-ca88c707e4a1?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b1a76649-759c-4b8d-9355-4f42db9987e1?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a42f828d-2bf9-43f8-a7d7-ca88c707e4a1","name":"a42f828d-2bf9-43f8-a7d7-ca88c707e4a1","status":"Succeeded","startTime":"2019-05-31T16:25:52.0894546Z","endTime":"2019-05-31T16:25:52.355189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b1a76649-759c-4b8d-9355-4f42db9987e1","name":"b1a76649-759c-4b8d-9355-4f42db9987e1","status":"Succeeded","startTime":"2019-07-12T12:56:17.8597114Z","endTime":"2019-07-12T12:56:18.3128347Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:26:22 GMT + - Fri, 12 Jul 2019 12:56:48 GMT expires: - '-1' pragma: @@ -739,12 +689,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -752,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/eastus2/operationResults/73b16749-5bd8-49d0-85fc-151ff8160e6b?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a333d787-34ef-4234-b78a-265f1cd96a12?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 31 May 2019 16:26:25 GMT + - Fri, 12 Jul 2019 12:56:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/73b16749-5bd8-49d0-85fc-151ff8160e6b?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a333d787-34ef-4234-b78a-265f1cd96a12?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -794,24 +744,24 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/73b16749-5bd8-49d0-85fc-151ff8160e6b?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a333d787-34ef-4234-b78a-265f1cd96a12?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/73b16749-5bd8-49d0-85fc-151ff8160e6b","name":"73b16749-5bd8-49d0-85fc-151ff8160e6b","status":"Succeeded","startTime":"2019-05-31T16:26:25.5186102Z","endTime":"2019-05-31T16:26:25.7061168Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a333d787-34ef-4234-b78a-265f1cd96a12","name":"a333d787-34ef-4234-b78a-265f1cd96a12","status":"Succeeded","startTime":"2019-07-12T12:56:52.4285236Z","endTime":"2019-07-12T12:56:52.6629308Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '621' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:26:56 GMT + - Fri, 12 Jul 2019 12:57:23 GMT expires: - '-1' pragma: @@ -847,12 +797,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-06-01 response: body: string: !!python/unicode '{"value":[]}' @@ -866,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:27:00 GMT + - Fri, 12 Jul 2019 12:57:25 GMT expires: - '-1' pragma: @@ -888,51 +838,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:27:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHWlJLSk4zQ1NIVTZBV05HR0VFRldGSkxDSVhSQk5YRnw2MkJGM0Y3NDM0ODE5REE4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 3bd90706c60..92c85d027d3 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T16:19:06Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"date":"2019-06-04T16:19:06Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:19:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '124' + - '130' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"ecc04074-ff40-45a0-8956-4e52e56712e7\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"eae9924d-5bdc-475d-a650-be12e01a2ec6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c4494c1c-cb12-4e44-851a-1a4f712c141e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"5cf58080-fcf8-4a4b-87bc-7043ff0e1a46\"\ ,\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\":\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2aeecfe1-029c-4f6a-9d85-1a6fece2aed4?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/17a3734a-b59b-4fed-ae40-088365908596?api-version=2019-04-01 cache-control: - no-cache content-length: - - '789' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:15 GMT + - Fri, 12 Jul 2019 10:28:18 GMT expires: - '-1' pragma: @@ -109,8 +59,10 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 23689ab2-fca8-4c45-b47d-3899893f8355 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/2aeecfe1-029c-4f6a-9d85-1a6fece2aed4?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/17a3734a-b59b-4fed-ae40-088365908596?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:18 GMT + - Fri, 12 Jul 2019 10:28:23 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 3ffab108-e144-4527-8f9a-6207f9bd89e6 status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"642169e5-a1f9-4a3c-8ec0-10da009b5af5\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"46f90659-b674-4ddf-9a5d-f0de4a784825\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c4494c1c-cb12-4e44-851a-1a4f712c141e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5cf58080-fcf8-4a4b-87bc-7043ff0e1a46\"\ ,\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\":\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:19 GMT + - Fri, 12 Jul 2019 10:28:23 GMT etag: - - W/"642169e5-a1f9-4a3c-8ec0-10da009b5af5" + - W/"46f90659-b674-4ddf-9a5d-f0de4a784825" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 4b9c4c81-7383-4b0a-ac6e-8e0f08ce53e7 status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"642169e5-a1f9-4a3c-8ec0-10da009b5af5\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"46f90659-b674-4ddf-9a5d-f0de4a784825\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c4494c1c-cb12-4e44-851a-1a4f712c141e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5cf58080-fcf8-4a4b-87bc-7043ff0e1a46\"\ ,\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\":\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '790' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:19 GMT + - Fri, 12 Jul 2019 10:28:24 GMT etag: - - W/"642169e5-a1f9-4a3c-8ec0-10da009b5af5" + - W/"46f90659-b674-4ddf-9a5d-f0de4a784825" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a7a724b9-7e68-430c-8d9b-566c3b310a95 status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "etag": "W/\"642169e5-a1f9-4a3c-8ec0-10da009b5af5\"", "location": "eastus2", + "etag": "W/\"46f90659-b674-4ddf-9a5d-f0de4a784825\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-lefr-02", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "c4494c1c-cb12-4e44-851a-1a4f712c141e", + {"dnsServers": []}, "resourceGuid": "5cf58080-fcf8-4a4b-87bc-7043ff0e1a46", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '771' + - '777' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"db7b060e-9d06-4472-b6fb-b67a31dca02e\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"2f5d510e-f6d4-4433-aef5-c3541c4c4693\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c4494c1c-cb12-4e44-851a-1a4f712c141e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"5cf58080-fcf8-4a4b-87bc-7043ff0e1a46\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"db7b060e-9d06-4472-b6fb-b67a31dca02e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"2f5d510e-f6d4-4433-aef5-c3541c4c4693\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"db7b060e-9d06-4472-b6fb-b67a31dca02e\\\ + ,\r\n \"etag\": \"W/\\\"2f5d510e-f6d4-4433-aef5-c3541c4c4693\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/9f1f1b3c-a9c9-4f1c-bf64-f921ed19f1a9?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca1ee4a3-0887-491f-b469-e812deb1da35?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2250' + - '2371' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:20 GMT + - Fri, 12 Jul 2019 10:28:25 GMT expires: - '-1' pragma: @@ -368,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 4fcf5b80-315b-489f-98c7-27dc11749060 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9f1f1b3c-a9c9-4f1c-bf64-f921ed19f1a9?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca1ee4a3-0887-491f-b469-e812deb1da35?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:24 GMT + - Fri, 12 Jul 2019 10:28:29 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - b601ffc4-a694-4fc5-b4c1-13fff31b4fbe status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"9dbe18f2-109a-4df9-b682-c57667bd0ff7\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"7321bcb9-8215-4660-a62f-17f4d38b2613\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c4494c1c-cb12-4e44-851a-1a4f712c141e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5cf58080-fcf8-4a4b-87bc-7043ff0e1a46\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"9dbe18f2-109a-4df9-b682-c57667bd0ff7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7321bcb9-8215-4660-a62f-17f4d38b2613\\\"\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"9dbe18f2-109a-4df9-b682-c57667bd0ff7\\\ + ,\r\n \"etag\": \"W/\\\"7321bcb9-8215-4660-a62f-17f4d38b2613\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2252' + - '2373' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:24 GMT + - Fri, 12 Jul 2019 10:28:30 GMT etag: - - W/"9dbe18f2-109a-4df9-b682-c57667bd0ff7" + - W/"7321bcb9-8215-4660-a62f-17f4d38b2613" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 0d0fb071-6ded-4332-8861-f7cc63d57fd2 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A28.6260625Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A35.2459232Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/bba63f1a-f844-4c7a-90f7-507d102ead53?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f844f461-de51-4abc-bde9-6b8031185d13?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:19:28 GMT + - Fri, 12 Jul 2019 10:28:35 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A28.6260625Z'" + - W/"datetime'2019-07-12T10%3A28%3A35.2459232Z'" expires: - '-1' pragma: @@ -550,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/bba63f1a-f844-4c7a-90f7-507d102ead53?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f844f461-de51-4abc-bde9-6b8031185d13?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/bba63f1a-f844-4c7a-90f7-507d102ead53","name":"bba63f1a-f844-4c7a-90f7-507d102ead53","status":"Succeeded","startTime":"2019-06-04T16:19:28.4291672Z","endTime":"2019-06-04T16:19:28.6791771Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f844f461-de51-4abc-bde9-6b8031185d13","name":"f844f461-de51-4abc-bde9-6b8031185d13","status":"Succeeded","startTime":"2019-07-12T10:28:35.102785Z","endTime":"2019-07-12T10:28:35.3910653Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - Tue, 04 Jun 2019 16:19:59 GMT + - Fri, 12 Jul 2019 10:29:06 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A19%3A28.8192406Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T10%3A28%3A35.3710107Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:00 GMT + - Fri, 12 Jul 2019 10:29:07 GMT etag: - - W/"datetime'2019-06-04T16%3A19%3A28.8192406Z'" + - W/"datetime'2019-07-12T10%3A28%3A35.3710107Z'" expires: - '-1' pragma: @@ -665,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A04.4130286Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A11.7954537Z''\"","location":"westcentralus","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/eastus2/operationResults/078145ad-69e9-4801-af42-420ae97f7892?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5363a7c2-0bb4-43aa-a53c-7843ea22a37f?api-version=2019-06-01 cache-control: - no-cache content-length: - - '542' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:04 GMT + - Fri, 12 Jul 2019 10:29:12 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A04.4130286Z'" + - W/"datetime'2019-07-12T10%3A29%3A11.7954537Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078145ad-69e9-4801-af42-420ae97f7892?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5363a7c2-0bb4-43aa-a53c-7843ea22a37f?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078145ad-69e9-4801-af42-420ae97f7892","name":"078145ad-69e9-4801-af42-420ae97f7892","status":"Succeeded","startTime":"2019-06-04T16:20:04.2625281Z","endTime":"2019-06-04T16:20:04.8406459Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5363a7c2-0bb4-43aa-a53c-7843ea22a37f","name":"5363a7c2-0bb4-43aa-a53c-7843ea22a37f","status":"Succeeded","startTime":"2019-07-12T10:29:11.6312971Z","endTime":"2019-07-12T10:29:12.2796937Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:35 GMT + - Fri, 12 Jul 2019 10:29:42 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A05.0105817Z''\"","location":"eastus2","properties":{"poolId":"0aa79b43-3030-0f9d-4e50-ba7a628d758e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A12.2767905Z''\"","location":"westcentralus","properties":{"poolId":"216ad17d-72c7-ad47-e537-3e7c023120db","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:36 GMT + - Fri, 12 Jul 2019 10:29:44 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A05.0105817Z'" + - W/"datetime'2019-07-12T10%3A29%3A12.2767905Z'" expires: - '-1' pragma: @@ -837,7 +805,7 @@ interactions: - request: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -848,37 +816,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '395' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A20%3A40.1841619Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A29%3A49.041472Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 cache-control: - no-cache content-length: - - '904' + - '909' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:20:39 GMT + - Fri, 12 Jul 2019 10:29:49 GMT etag: - - W/"datetime'2019-06-04T16%3A20%3A40.1841619Z'" + - W/"datetime'2019-07-12T10%3A29%3A49.041472Z'" expires: - '-1' pragma: @@ -892,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -913,24 +881,78 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:30: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 --creation-token --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:11 GMT + - Fri, 12 Jul 2019 10:30:54 GMT expires: - '-1' pragma: @@ -967,24 +989,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:21:41 GMT + - Fri, 12 Jul 2019 10:31:27 GMT expires: - '-1' pragma: @@ -1021,24 +1043,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:22:12 GMT + - Fri, 12 Jul 2019 10:31:58 GMT expires: - '-1' pragma: @@ -1075,24 +1097,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:22:42 GMT + - Fri, 12 Jul 2019 10:32:29 GMT expires: - '-1' pragma: @@ -1129,24 +1151,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:14 GMT + - Fri, 12 Jul 2019 10:33:00 GMT expires: - '-1' pragma: @@ -1183,24 +1205,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:23:45 GMT + - Fri, 12 Jul 2019 10:33:32 GMT expires: - '-1' pragma: @@ -1237,24 +1259,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:24:15 GMT + - Fri, 12 Jul 2019 10:34:04 GMT expires: - '-1' pragma: @@ -1291,24 +1313,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:24:47 GMT + - Fri, 12 Jul 2019 10:34:35 GMT expires: - '-1' pragma: @@ -1345,24 +1367,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:25:17 GMT + - Fri, 12 Jul 2019 10:35:06 GMT expires: - '-1' pragma: @@ -1399,24 +1421,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Creating","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Creating","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:25:49 GMT + - Fri, 12 Jul 2019 10:35:37 GMT expires: - '-1' pragma: @@ -1453,24 +1475,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/7c589a01-e639-44f9-8fcc-4e0f3884d235","name":"7c589a01-e639-44f9-8fcc-4e0f3884d235","status":"Succeeded","startTime":"2019-06-04T16:20:40.0340262Z","endTime":"2019-06-04T16:25:55.3506562Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1e5926c-2ef5-40e1-975a-d2546498b33b","name":"d1e5926c-2ef5-40e1-975a-d2546498b33b","status":"Succeeded","startTime":"2019-07-12T10:29:48.8749355Z","endTime":"2019-07-12T10:35:40.6411077Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:19 GMT + - Fri, 12 Jul 2019 10:36:09 GMT expires: - '-1' pragma: @@ -1507,26 +1529,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-06-04T16%3A25%3A55.3864213Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_73f01e73","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"49df9bda-ef3e-24fd-1bac-df3b7c0907c6","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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''2019-07-12T10%3A35%3A40.6330527Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_dabad60b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"bc51e907-8ede-9a84-686e-cf84e675e78a","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"10.5.0.1","netmask":"255.255.255.0","ipAddress":"10.5.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1625' + - '1582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:20 GMT + - Fri, 12 Jul 2019 10:36:10 GMT etag: - - W/"datetime'2019-06-04T16%3A25%3A55.3864213Z'" + - W/"datetime'2019-07-12T10%3A35%3A40.6330527Z'" expires: - '-1' pragma: @@ -1549,8 +1571,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "1ac8e31a-807d-c3d3-7ac6-7626bfd09194"}, - "location": "eastus2"}' + body: !!python/unicode '{"properties": {"fileSystemId": "1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e"}, + "location": "westcentralus"}' headers: Accept: - application/json @@ -1561,35 +1583,38 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '101' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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","etag":"6/4/2019 - 4:26:26 PM","location":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"1521db28-3b87-b11c-3bad-51c0b1efe505","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","name":"cli-sn-000005","created":"2019-06-04T16:26:24Z"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","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/westcentralus/operationResults/53814b75-53e3-497f-8957-4dc5ce091034?api-version=2019-06-01 cache-control: - no-cache content-length: - - '777' + - '668' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:26 GMT + - Fri, 12 Jul 2019 10:36:15 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53814b75-53e3-497f-8957-4dc5ce091034?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1601,15 +1626,121 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: code: 201 message: Created - request: - body: !!python/unicode '{"properties": {"fileSystemId": "1ac8e31a-807d-c3d3-7ac6-7626bfd09194"}, - "location": "eastus2"}' + 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/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53814b75-53e3-497f-8957-4dc5ce091034?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53814b75-53e3-497f-8957-4dc5ce091034","name":"53814b75-53e3-497f-8957-4dc5ce091034","status":"Succeeded","startTime":"2019-07-12T10:36:15.4855846Z","endTime":"2019-07-12T10:36:18.3449853Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:36: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 snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l --file-system-id + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"19432859-0e54-3fc1-3726-3d1361f7d2ad","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","name":"cli-sn-000005","created":"2019-07-12T10:36:15Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:36:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"properties": {"fileSystemId": "1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e"}, + "location": "westcentralus"}' headers: Accept: - application/json @@ -1620,35 +1751,38 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '101' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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","etag":"6/4/2019 - 4:26:32 PM","location":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"bcae6bdc-abc0-5149-3e9d-b0cad46aa839","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","name":"cli-sn-000006","created":"2019-06-04T16:26:30Z"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","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/westcentralus/operationResults/ea7427ff-34de-4e29-b24c-08e1a8cff4aa?api-version=2019-06-01 cache-control: - no-cache content-length: - - '777' + - '668' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:32 GMT + - Fri, 12 Jul 2019 10:36:54 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ea7427ff-34de-4e29-b24c-08e1a8cff4aa?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1660,7 +1794,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1674,32 +1808,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles snapshot list + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ea7427ff-34de-4e29-b24c-08e1a8cff4aa?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"1521db28-3b87-b11c-3bad-51c0b1efe505","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","name":"cli-sn-000005","created":"2019-06-04T16:26:24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"eastus2","properties":{"provisioningState":"Succeeded","snapshotId":"bcae6bdc-abc0-5149-3e9d-b0cad46aa839","fileSystemId":"1ac8e31a-807d-c3d3-7ac6-7626bfd09194","name":"cli-sn-000006","created":"2019-06-04T16:26:30Z"}}]}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ea7427ff-34de-4e29-b24c-08e1a8cff4aa","name":"ea7427ff-34de-4e29-b24c-08e1a8cff4aa","status":"Succeeded","startTime":"2019-07-12T10:36:54.2626514Z","endTime":"2019-07-12T10:36:56.4189281Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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: - - '1509' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:33 GMT + - Fri, 12 Jul 2019 10:37:25 GMT expires: - '-1' pragma: @@ -1729,43 +1861,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - netappfiles snapshot create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --name --yes --no-wait + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"28ebf382-46c3-db0f-9b86-e37aa55ed734","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","name":"cli-sn-000006","created":"2019-07-12T10:36:54Z"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 10:37:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-06-01 response: body: - string: !!python/unicode '' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"19432859-0e54-3fc1-3726-3d1361f7d2ad","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","name":"cli-sn-000005","created":"2019-07-12T10:36:15Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"28ebf382-46c3-db0f-9b86-e37aa55ed734","fileSystemId":"1cb55cf3-956d-f6dc-7545-a9f8db3f0b1e","name":"cli-sn-000006","created":"2019-07-12T10:36:54Z"}}]}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '0' + - '1521' + content-type: + - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:26:37 GMT + - Fri, 12 Jul 2019 10:37:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdUNTdETDdGSUtNQ1BQUzRWUkI1SjNZWDQ1NTZGS1dENE5KM3xBRjE1OEUzRjFCOUIyOTJGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.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 version: 1 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 3ebe3023f76..560b2ed35df 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T15:55:04Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T15:55:04Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 15:55:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"ce940fd7-683b-4816-9165-6f91228744f4\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"363e5fbc-1319-43d4-9c89-d3f7bd1c9c81\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"a7201db6-4bb2-494a-ad42-ac5524f53321\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"83249bae-97c7-4279-a315-8e1697d636b0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/da347aa2-86d9-4c97-b67c-bdb2dc356903?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3d19d230-10b0-4f22-b2ed-6a5d16c6cdfa?api-version=2019-04-01 cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:12 GMT + - Fri, 12 Jul 2019 09:27:50 GMT expires: - '-1' pragma: @@ -109,6 +59,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 912458cd-c12c-4ca3-b726-72a08b35c225 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/da347aa2-86d9-4c97-b67c-bdb2dc356903?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3d19d230-10b0-4f22-b2ed-6a5d16c6cdfa?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:16 GMT + - Fri, 12 Jul 2019 09:27:54 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - fcb3bf58-f5b1-4c0f-9475-338513cb5eb1 status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"13293db7-147e-4989-915b-077ff3274dc1\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"5fcf1af6-3063-40c3-b04e-8b71298944e8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a7201db6-4bb2-494a-ad42-ac5524f53321\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"83249bae-97c7-4279-a315-8e1697d636b0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:16 GMT + - Fri, 12 Jul 2019 09:27:55 GMT etag: - - W/"13293db7-147e-4989-915b-077ff3274dc1" + - W/"5fcf1af6-3063-40c3-b04e-8b71298944e8" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 47e097d9-93a7-4434-944e-11046f787ecc status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"13293db7-147e-4989-915b-077ff3274dc1\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"5fcf1af6-3063-40c3-b04e-8b71298944e8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a7201db6-4bb2-494a-ad42-ac5524f53321\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"83249bae-97c7-4279-a315-8e1697d636b0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:17 GMT + - Fri, 12 Jul 2019 09:27:56 GMT etag: - - W/"13293db7-147e-4989-915b-077ff3274dc1" + - W/"5fcf1af6-3063-40c3-b04e-8b71298944e8" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - dc053974-c241-45ac-af08-5cf3c60d7dda status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", - "etag": "W/\"13293db7-147e-4989-915b-077ff3274dc1\"", "location": "eastus2", + "etag": "W/\"5fcf1af6-3063-40c3-b04e-8b71298944e8\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-000007", "properties": {"addressPrefix": "10.12.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "a7201db6-4bb2-494a-ad42-ac5524f53321", + {"dnsServers": []}, "resourceGuid": "83249bae-97c7-4279-a315-8e1697d636b0", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '779' + - '785' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"20708e51-6b75-482c-b46b-2f11f6b92b60\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"0635959a-7064-466a-8b44-f9330ea61e3d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"a7201db6-4bb2-494a-ad42-ac5524f53321\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"83249bae-97c7-4279-a315-8e1697d636b0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\"\ - ,\r\n \"etag\": \"W/\\\"20708e51-6b75-482c-b46b-2f11f6b92b60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0635959a-7064-466a-8b44-f9330ea61e3d\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"20708e51-6b75-482c-b46b-2f11f6b92b60\\\ + ,\r\n \"etag\": \"W/\\\"0635959a-7064-466a-8b44-f9330ea61e3d\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/7a2cf6cb-ed36-4599-9d17-4ba9f63426be?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3e01d820-5c64-4046-a8ab-66f9173dcd07?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2278' + - '2399' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:19 GMT + - Fri, 12 Jul 2019 09:27:57 GMT expires: - '-1' pragma: @@ -368,8 +328,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 5a964d73-8e53-40ac-b401-0acb565ca3a8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7a2cf6cb-ed36-4599-9d17-4ba9f63426be?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3e01d820-5c64-4046-a8ab-66f9173dcd07?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:22 GMT + - Fri, 12 Jul 2019 09:28:01 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - b3e50230-7dc8-481e-be9c-7c103b21315d status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"5568083a-2f89-45ff-baeb-08dbcb469368\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"cd796b21-3fe7-4b3b-8e7b-19d6a23d0f4c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"a7201db6-4bb2-494a-ad42-ac5524f53321\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"83249bae-97c7-4279-a315-8e1697d636b0\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\"\ - ,\r\n \"etag\": \"W/\\\"5568083a-2f89-45ff-baeb-08dbcb469368\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cd796b21-3fe7-4b3b-8e7b-19d6a23d0f4c\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"5568083a-2f89-45ff-baeb-08dbcb469368\\\ + ,\r\n \"etag\": \"W/\\\"cd796b21-3fe7-4b3b-8e7b-19d6a23d0f4c\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2280' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:22 GMT + - Fri, 12 Jul 2019 09:28:01 GMT etag: - - W/"5568083a-2f89-45ff-baeb-08dbcb469368" + - W/"cd796b21-3fe7-4b3b-8e7b-19d6a23d0f4c" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 94cb15eb-56eb-49b2-ae55-8126d98457ac status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,98 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A26.2780431Z''\"","location":"eastus2","properties":{"provisioningState":"Creating","name":"cli-acc-000002"}}' + string: !!python/unicode '{"error":{"code":"InternalServerError","message":"Encountered + internal server error. Please try again."}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + connection: + - close + content-length: + - '105' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09: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 + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 500 + message: Internal Server Error +- request: + body: !!python/unicode '{"location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '29' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A08.4039337Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/c4b48f35-4b97-48fd-a50a-7a5301290f70?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d480ee94-5329-4d0f-a56b-6a320d0f0a95?api-version=2019-06-01 cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:26 GMT + - Fri, 12 Jul 2019 09:28:09 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A26.2780431Z'" + - W/"datetime'2019-07-12T09%3A28%3A08.4039337Z'" expires: - '-1' pragma: @@ -570,24 +600,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/c4b48f35-4b97-48fd-a50a-7a5301290f70?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d480ee94-5329-4d0f-a56b-6a320d0f0a95?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/c4b48f35-4b97-48fd-a50a-7a5301290f70","name":"c4b48f35-4b97-48fd-a50a-7a5301290f70","status":"Succeeded","startTime":"2019-06-04T15:55:26.1300915Z","endTime":"2019-06-04T15:55:26.3332196Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d480ee94-5329-4d0f-a56b-6a320d0f0a95","name":"d480ee94-5329-4d0f-a56b-6a320d0f0a95","status":"Succeeded","startTime":"2019-07-12T09:28:08.2497742Z","endTime":"2019-07-12T09:28:08.5309682Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:57 GMT + - Fri, 12 Jul 2019 09:28:40 GMT expires: - '-1' pragma: @@ -623,26 +653,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T15%3A55%3A26.479232Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A28%3A08.5300219Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:55:57 GMT + - Fri, 12 Jul 2019 09:28:41 GMT etag: - - W/"datetime'2019-06-04T15%3A55%3A26.479232Z'" + - W/"datetime'2019-07-12T09%3A28%3A08.5300219Z'" expires: - '-1' pragma: @@ -666,7 +696,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, - "location": "eastus2", "tags": {"Tag1": "Value1"}}' + "location": "westcentralus", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -677,36 +707,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '123' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A00.7814433Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A46.0192034Z''\"","location":"westcentralus","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/eastus2/operationResults/b11b1016-dab6-4392-bd5e-3c8579a4b4fb?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6ae1b306-1f77-4839-a59b-3a30b3f8a5ec?api-version=2019-06-01 cache-control: - no-cache content-length: - - '567' + - '573' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:01 GMT + - Fri, 12 Jul 2019 09:28:46 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A00.7814433Z'" + - W/"datetime'2019-07-12T09%3A28%3A46.0192034Z'" expires: - '-1' pragma: @@ -720,7 +750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -740,24 +770,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b11b1016-dab6-4392-bd5e-3c8579a4b4fb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6ae1b306-1f77-4839-a59b-3a30b3f8a5ec?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b11b1016-dab6-4392-bd5e-3c8579a4b4fb","name":"b11b1016-dab6-4392-bd5e-3c8579a4b4fb","status":"Succeeded","startTime":"2019-06-04T15:56:00.6433374Z","endTime":"2019-06-04T15:56:01.0964823Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6ae1b306-1f77-4839-a59b-3a30b3f8a5ec","name":"6ae1b306-1f77-4839-a59b-3a30b3f8a5ec","status":"Succeeded","startTime":"2019-07-12T09:28:45.8724075Z","endTime":"2019-07-12T09:28:46.4864568Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:32 GMT + - Fri, 12 Jul 2019 09:29:19 GMT expires: - '-1' pragma: @@ -793,26 +823,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A01.187825Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"ae563134-354d-317b-b64b-63202e901944","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A28%3A46.4815268Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"poolId":"d36c687d-68aa-2098-fa09-92e1ba61ff45","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: - - '674' + - '681' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:32 GMT + - Fri, 12 Jul 2019 09:29:21 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A01.187825Z'" + - W/"datetime'2019-07-12T09%3A28%3A46.4815268Z'" expires: - '-1' pragma: @@ -835,7 +865,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"usageThreshold": + body: !!python/unicode '{"location": "westcentralus", "properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "tags": {"Tag1": "Value1"}}' @@ -849,37 +879,37 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '429' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T15%3A56%3A37.0586486Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A29%3A27.660283Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 cache-control: - no-cache content-length: - - '935' + - '940' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:56:37 GMT + - Fri, 12 Jul 2019 09:29:27 GMT etag: - - W/"datetime'2019-06-04T15%3A56%3A37.0586486Z'" + - W/"datetime'2019-07-12T09%3A29%3A27.660283Z'" expires: - '-1' pragma: @@ -914,24 +944,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:08 GMT + - Fri, 12 Jul 2019 09:29:59 GMT expires: - '-1' pragma: @@ -968,24 +998,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:57:39 GMT + - Fri, 12 Jul 2019 09:30:30 GMT expires: - '-1' pragma: @@ -1022,24 +1052,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:09 GMT + - Fri, 12 Jul 2019 09:31:03 GMT expires: - '-1' pragma: @@ -1076,24 +1106,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:58:41 GMT + - Fri, 12 Jul 2019 09:31:36 GMT expires: - '-1' pragma: @@ -1130,24 +1160,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:12 GMT + - Fri, 12 Jul 2019 09:32:07 GMT expires: - '-1' pragma: @@ -1184,24 +1214,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 15:59:43 GMT + - Fri, 12 Jul 2019 09:32:38 GMT expires: - '-1' pragma: @@ -1238,24 +1268,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:14 GMT + - Fri, 12 Jul 2019 09:33:09 GMT expires: - '-1' pragma: @@ -1292,24 +1322,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:00:45 GMT + - Fri, 12 Jul 2019 09:33:42 GMT expires: - '-1' pragma: @@ -1346,24 +1376,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:16 GMT + - Fri, 12 Jul 2019 09:34:15 GMT expires: - '-1' pragma: @@ -1400,24 +1430,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:01:47 GMT + - Fri, 12 Jul 2019 09:34:47 GMT expires: - '-1' pragma: @@ -1454,24 +1484,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:02:18 GMT + - Fri, 12 Jul 2019 09:35:18 GMT expires: - '-1' pragma: @@ -1508,24 +1538,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:02:49 GMT + - Fri, 12 Jul 2019 09:35:50 GMT expires: - '-1' pragma: @@ -1562,24 +1592,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:21 GMT + - Fri, 12 Jul 2019 09:36:23 GMT expires: - '-1' pragma: @@ -1616,24 +1646,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:03:52 GMT + - Fri, 12 Jul 2019 09:36:54 GMT expires: - '-1' pragma: @@ -1670,24 +1700,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:04:23 GMT + - Fri, 12 Jul 2019 09:37:25 GMT expires: - '-1' pragma: @@ -1724,24 +1754,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:04:54 GMT + - Fri, 12 Jul 2019 09:37:57 GMT expires: - '-1' pragma: @@ -1778,24 +1808,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:05:25 GMT + - Fri, 12 Jul 2019 09:38:29 GMT expires: - '-1' pragma: @@ -1832,24 +1862,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:05:56 GMT + - Fri, 12 Jul 2019 09:39:03 GMT expires: - '-1' pragma: @@ -1886,24 +1916,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:06:27 GMT + - Fri, 12 Jul 2019 09:39:35 GMT expires: - '-1' pragma: @@ -1940,24 +1970,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:06:58 GMT + - Fri, 12 Jul 2019 09:40:06 GMT expires: - '-1' pragma: @@ -1994,24 +2024,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:07:29 GMT + - Fri, 12 Jul 2019 09:40:37 GMT expires: - '-1' pragma: @@ -2048,24 +2078,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:08:00 GMT + - Fri, 12 Jul 2019 09:41:09 GMT expires: - '-1' pragma: @@ -2102,24 +2132,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:08:32 GMT + - Fri, 12 Jul 2019 09:41:40 GMT expires: - '-1' pragma: @@ -2156,24 +2186,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:09:03 GMT + - Fri, 12 Jul 2019 09:42:11 GMT expires: - '-1' pragma: @@ -2210,24 +2240,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:09:34 GMT + - Fri, 12 Jul 2019 09:42:43 GMT expires: - '-1' pragma: @@ -2264,24 +2294,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:10:05 GMT + - Fri, 12 Jul 2019 09:43:15 GMT expires: - '-1' pragma: @@ -2318,24 +2348,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Creating","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:10:37 GMT + - Fri, 12 Jul 2019 09:43:48 GMT expires: - '-1' pragma: @@ -2372,24 +2402,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fdd57a8c-8fa4-4d79-96de-8fabca235bdb","name":"fdd57a8c-8fa4-4d79-96de-8fabca235bdb","status":"Succeeded","startTime":"2019-06-04T15:56:36.8847657Z","endTime":"2019-06-04T16:10:52.2352312Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:07 GMT + - Fri, 12 Jul 2019 09:44:20 GMT expires: - '-1' pragma: @@ -2426,26 +2456,188 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A10%3A52.280896Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"c8630837-3662-2e4b-97b7-4f4b1d85d00e","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_27f4393c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a05c23f0-21f0-c84f-8632-aac79f49c0e4","fileSystemId":"c8630837-3662-2e4b-97b7-4f4b1d85d00e","startIp":"10.12.0.8","endIp":"10.12.0.8","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.8"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1659' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:08 GMT + - Fri, 12 Jul 2019 09:44: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 --creation-token --vnet --subnet --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Creating","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '643' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:45: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 --creation-token --vnet --subnet --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20fc6204-f601-42f5-ada1-575e524a1223","name":"20fc6204-f601-42f5-ada1-575e524a1223","status":"Succeeded","startTime":"2019-07-12T09:29:27.5319376Z","endTime":"2019-07-12T09:45:46.927329Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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: + - Fri, 12 Jul 2019 09:45: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 --creation-token --vnet --subnet --tags + User-Agent: + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A45%3A46.9269636Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"918b8ff6-6192-40ee-c65a-4b9c757c1a85","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_40522e69","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d470afb0-8f60-7ecc-cf96-005368ebb842","fileSystemId":"918b8ff6-6192-40ee-c65a-4b9c757c1a85","startIp":"10.12.0.7","endIp":"10.12.0.7","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.7"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1617' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Jul 2019 09:46:01 GMT etag: - - W/"datetime'2019-06-04T16%3A10%3A52.280896Z'" + - W/"datetime'2019-07-12T09%3A45%3A46.9269636Z'" expires: - '-1' pragma: @@ -2468,7 +2660,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"usageThreshold": + body: !!python/unicode '{"location": "westcentralus", "properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", "serviceLevel": "Premium", "creationToken": "cli-vol-000005"}, "tags": {"Tag1": "Value1"}}' @@ -2482,37 +2674,37 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '429' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A11%3A13.6662833Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A46%3A08.8762927Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/8ed85d9e-b390-4b02-a700-56da9b8fcd48?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1e9a6523-251a-447c-8bbf-cdfdd6fec208?api-version=2019-06-01 cache-control: - no-cache content-length: - - '935' + - '941' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:13 GMT + - Fri, 12 Jul 2019 09:46:09 GMT etag: - - W/"datetime'2019-06-04T16%3A11%3A13.6662833Z'" + - W/"datetime'2019-07-12T09%3A46%3A08.8762927Z'" expires: - '-1' pragma: @@ -2526,7 +2718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -2547,24 +2739,24 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8ed85d9e-b390-4b02-a700-56da9b8fcd48?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1e9a6523-251a-447c-8bbf-cdfdd6fec208?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8ed85d9e-b390-4b02-a700-56da9b8fcd48","name":"8ed85d9e-b390-4b02-a700-56da9b8fcd48","status":"Succeeded","startTime":"2019-06-04T16:11:13.5046492Z","endTime":"2019-06-04T16:11:27.5677011Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1e9a6523-251a-447c-8bbf-cdfdd6fec208","name":"1e9a6523-251a-447c-8bbf-cdfdd6fec208","status":"Succeeded","startTime":"2019-07-12T09:46:08.7114918Z","endTime":"2019-07-12T09:46:35.305575Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:44 GMT + - Fri, 12 Jul 2019 09:46:42 GMT expires: - '-1' pragma: @@ -2601,26 +2793,26 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --creation-token --vnet --subnet --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A11%3A27.6085733Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_27f4393c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2893bde9-45aa-cf13-9f37-7085807ec53c","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","startIp":"10.8.0.64","endIp":"10.8.0.127","gateway":"10.8.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.8"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A46%3A35.2977433Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_40522e69","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"3d306e52-8a4d-f4b3-6606-51ea94ee9e01","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","startIp":"10.0.0.64","endIp":"10.0.0.127","gateway":"10.0.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.7"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1663' + - '1620' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:44 GMT + - Fri, 12 Jul 2019 09:46:44 GMT etag: - - W/"datetime'2019-06-04T16%3A11%3A27.6085733Z'" + - W/"datetime'2019-07-12T09%3A46%3A35.2977433Z'" expires: - '-1' pragma: @@ -2656,26 +2848,26 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A10%3A52.280896Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"c8630837-3662-2e4b-97b7-4f4b1d85d00e","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_27f4393c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a05c23f0-21f0-c84f-8632-aac79f49c0e4","fileSystemId":"c8630837-3662-2e4b-97b7-4f4b1d85d00e","startIp":"10.12.0.8","endIp":"10.12.0.8","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.8"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A11%3A27.6085733Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_27f4393c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2893bde9-45aa-cf13-9f37-7085807ec53c","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","startIp":"10.8.0.64","endIp":"10.8.0.127","gateway":"10.8.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.8"}]}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A45%3A46.9269636Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"918b8ff6-6192-40ee-c65a-4b9c757c1a85","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_40522e69","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"d470afb0-8f60-7ecc-cf96-005368ebb842","fileSystemId":"918b8ff6-6192-40ee-c65a-4b9c757c1a85","startIp":"10.12.0.7","endIp":"10.12.0.7","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.7"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A46%3A35.2977433Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_40522e69","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"3d306e52-8a4d-f4b3-6606-51ea94ee9e01","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","startIp":"10.0.0.64","endIp":"10.0.0.127","gateway":"10.0.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.7"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3335' + - '3250' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:11:46 GMT + - Fri, 12 Jul 2019 09:46:47 GMT expires: - '-1' pragma: @@ -2713,12 +2905,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: string: !!python/unicode '' @@ -2726,17 +2918,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/18dfc062-0160-412a-9a1e-9730f061c800?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4ac0abb2-11bd-4f9e-b8e3-b59a7043166f?api-version=2019-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 04 Jun 2019 16:11:48 GMT + - Fri, 12 Jul 2019 09:46:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/18dfc062-0160-412a-9a1e-9730f061c800?api-version=2019-05-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4ac0abb2-11bd-4f9e-b8e3-b59a7043166f?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2768,24 +2960,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/18dfc062-0160-412a-9a1e-9730f061c800?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4ac0abb2-11bd-4f9e-b8e3-b59a7043166f?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/18dfc062-0160-412a-9a1e-9730f061c800","name":"18dfc062-0160-412a-9a1e-9730f061c800","status":"Succeeded","startTime":"2019-06-04T16:11:48.6719318Z","endTime":"2019-06-04T16:11:52.1464529Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4ac0abb2-11bd-4f9e-b8e3-b59a7043166f","name":"4ac0abb2-11bd-4f9e-b8e3-b59a7043166f","status":"Succeeded","startTime":"2019-07-12T09:46:50.6892265Z","endTime":"2019-07-12T09:47:05.0720935Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:19 GMT + - Fri, 12 Jul 2019 09:47:21 GMT expires: - '-1' pragma: @@ -2821,26 +3013,26 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-06-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A11%3A27.6085733Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_27f4393c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2893bde9-45aa-cf13-9f37-7085807ec53c","fileSystemId":"3c379aae-acb9-551e-5a1f-2d4e915c181b","startIp":"10.8.0.64","endIp":"10.8.0.127","gateway":"10.8.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.8"}]}}]}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A46%3A35.2977433Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_40522e69","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"3d306e52-8a4d-f4b3-6606-51ea94ee9e01","fileSystemId":"9724eca4-0589-537e-7a31-ab5fa9ebdfc9","startIp":"10.0.0.64","endIp":"10.0.0.127","gateway":"10.0.0.65","netmask":"255.255.255.192","ipAddress":"10.12.0.7"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1675' + - '1632' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:20 GMT + - Fri, 12 Jul 2019 09:47:24 GMT expires: - '-1' pragma: @@ -2862,51 +3054,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 16:13:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHUTdLUjQ1R0VaSlpKTEdJM0FUWVBGSVNaWUlYREZWNXw2NDIzNzkyREFFNEZCNjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 a3e2144c335..a0e9a52a49a 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,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-05-31T16:18:05Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001","name":"cli_tests_rg_000001","location":"westus","tags":{"date":"2019-05-31T16:18:05Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 31 May 2019 16:18:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A14.0911902Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A04.9491422Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3621b057-fdaf-4de3-bde4-6622234c9ab6?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3be0a419-8bfc-40dd-b719-ac25ca935d56?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:14 GMT + - Fri, 12 Jul 2019 13:55:05 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A14.0911902Z'" + - W/"datetime'2019-07-12T13%3A55%3A04.9491422Z'" expires: - '-1' pragma: @@ -104,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3621b057-fdaf-4de3-bde4-6622234c9ab6?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3be0a419-8bfc-40dd-b719-ac25ca935d56?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3621b057-fdaf-4de3-bde4-6622234c9ab6","name":"3621b057-fdaf-4de3-bde4-6622234c9ab6","status":"Succeeded","startTime":"2019-05-31T16:18:13.9594774Z","endTime":"2019-05-31T16:18:14.1626005Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3be0a419-8bfc-40dd-b719-ac25ca935d56","name":"3be0a419-8bfc-40dd-b719-ac25ca935d56","status":"Succeeded","startTime":"2019-07-12T13:55:04.7560034Z","endTime":"2019-07-12T13:55:05.0885517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:46 GMT + - Fri, 12 Jul 2019 13:55:36 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A14.2853308Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A05.0782317Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:49 GMT + - Fri, 12 Jul 2019 13:55:37 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A14.2853308Z'" + - W/"datetime'2019-07-12T13%3A55%3A05.0782317Z'" expires: - '-1' pragma: @@ -232,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A14.2853308Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A05.0782317Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:52 GMT + - Fri, 12 Jul 2019 13:55:39 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A14.2853308Z'" + - W/"datetime'2019-07-12T13%3A55%3A05.0782317Z'" expires: - '-1' pragma: @@ -293,28 +243,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.56 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-05-31T16%3A18%3A57.1998436Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T13%3A55%3A41.9259734Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '484' content-type: - application/json; charset=utf-8 date: - - Fri, 31 May 2019 16:18:58 GMT + - Fri, 12 Jul 2019 13:55:42 GMT etag: - - W/"datetime'2019-05-31T16%3A18%3A57.1998436Z'" + - W/"datetime'2019-07-12T13%3A55%3A41.9259734Z'" expires: - '-1' pragma: @@ -338,51 +288,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.56 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg_000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 31 May 2019 16:19:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHOjVGRkpGU0hWUENXTFFUM0pLSEpSSUdINjVCVlhZRnxGNjJEOEE1QjZEQzcwODdDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 7abf775ab4a..3ba35f22822 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T18:59:40Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T18:59:40Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 18:59:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -61,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T18%3A59%3A48.5609467Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A51%3A39.361628Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5ef9c030-1e7e-41a5-a1a5-44a6ab71d212?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3e7d57c3-039d-42be-8a12-407f77981d5c?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 18:59:49 GMT + - Fri, 12 Jul 2019 12:51:39 GMT etag: - - W/"datetime'2019-06-04T18%3A59%3A48.5609467Z'" + - W/"datetime'2019-07-12T12%3A51%3A39.361628Z'" expires: - '-1' pragma: @@ -124,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5ef9c030-1e7e-41a5-a1a5-44a6ab71d212?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3e7d57c3-039d-42be-8a12-407f77981d5c?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5ef9c030-1e7e-41a5-a1a5-44a6ab71d212","name":"5ef9c030-1e7e-41a5-a1a5-44a6ab71d212","status":"Succeeded","startTime":"2019-06-04T18:59:48.3878555Z","endTime":"2019-06-04T18:59:51.5933371Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3e7d57c3-039d-42be-8a12-407f77981d5c","name":"3e7d57c3-039d-42be-8a12-407f77981d5c","status":"Succeeded","startTime":"2019-07-12T12:51:39.2249837Z","endTime":"2019-07-12T12:51:39.4906548Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:00:21 GMT + - Fri, 12 Jul 2019 12:52:10 GMT expires: - '-1' pragma: @@ -177,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T18%3A59%3A53.2333646Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T12%3A51%3A39.4867155Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:00:21 GMT + - Fri, 12 Jul 2019 12:52:11 GMT etag: - - W/"datetime'2019-06-04T18%3A59%3A53.2333646Z'" + - W/"datetime'2019-07-12T12%3A51%3A39.4867155Z'" expires: - '-1' pragma: @@ -219,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -231,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T19%3A00%3A25.6991231Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A52%3A16.9648957Z''\"","location":"westcentralus","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/eastus2/operationResults/003d7e1f-40fb-4f95-bcc8-2810f33c96ee?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c1c01b83-2f19-4fb6-872b-ab0db05e3d2f?api-version=2019-06-01 cache-control: - no-cache content-length: - - '542' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:00:31 GMT + - Fri, 12 Jul 2019 12:52:17 GMT etag: - - W/"datetime'2019-06-04T19%3A00%3A25.6991231Z'" + - W/"datetime'2019-07-12T12%3A52%3A16.9648957Z'" expires: - '-1' pragma: @@ -294,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/003d7e1f-40fb-4f95-bcc8-2810f33c96ee?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c1c01b83-2f19-4fb6-872b-ab0db05e3d2f?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/003d7e1f-40fb-4f95-bcc8-2810f33c96ee","name":"003d7e1f-40fb-4f95-bcc8-2810f33c96ee","status":"Succeeded","startTime":"2019-06-04T19:00:25.5526634Z","endTime":"2019-06-04T19:00:38.155851Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c1c01b83-2f19-4fb6-872b-ab0db05e3d2f","name":"c1c01b83-2f19-4fb6-872b-ab0db05e3d2f","status":"Succeeded","startTime":"2019-07-12T12:52:16.8069171Z","endTime":"2019-07-12T12:52:17.3850186Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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' + - '621' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:01:03 GMT + - Fri, 12 Jul 2019 12:52:50 GMT expires: - '-1' pragma: @@ -347,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T19%3A00%3A39.8065126Z''\"","location":"eastus2","properties":{"poolId":"343410fb-f76e-bed5-51ba-34c518fc43d3","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A52%3A17.3851893Z''\"","location":"westcentralus","properties":{"poolId":"33856c2b-029a-09aa-5c0a-6bc4456ad14b","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:01:04 GMT + - Fri, 12 Jul 2019 12:52:53 GMT etag: - - W/"datetime'2019-06-04T19%3A00%3A39.8065126Z'" + - W/"datetime'2019-07-12T12%3A52%3A17.3851893Z'" expires: - '-1' pragma: @@ -402,28 +352,28 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T19%3A00%3A39.8065126Z''\"","location":"eastus2","properties":{"poolId":"343410fb-f76e-bed5-51ba-34c518fc43d3","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A52%3A17.3851893Z''\"","location":"westcentralus","properties":{"poolId":"33856c2b-029a-09aa-5c0a-6bc4456ad14b","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' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:01:06 GMT + - Fri, 12 Jul 2019 12:52:56 GMT etag: - - W/"datetime'2019-06-04T19%3A00%3A39.8065126Z'" + - W/"datetime'2019-07-12T12%3A52%3A17.3851893Z'" expires: - '-1' pragma: @@ -464,28 +414,28 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T19%3A01%3A09.0852938Z''\"","location":"eastus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"343410fb-f76e-bed5-51ba-34c518fc43d3","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T12%3A53%3A01.4289498Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"33856c2b-029a-09aa-5c0a-6bc4456ad14b","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '676' + - '682' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 19:01:09 GMT + - Fri, 12 Jul 2019 12:53:03 GMT etag: - - W/"datetime'2019-06-04T19%3A01%3A09.0852938Z'" + - W/"datetime'2019-07-12T12%3A53%3A01.4289498Z'" expires: - '-1' pragma: @@ -509,51 +459,4 @@ interactions: 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: - - --name --yes --no-wait - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 04 Jun 2019 19:01:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHNUhPQTJUUUpMWTNSVDVQRVFCNUZYN0paUkMyT0JURnw4QTU3Q0YwRkNCMjM2MzNBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 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 54f582576be..ca8c86ed99c 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 @@ -1,56 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2019-06-04T16:12:31Z", - "product": "azurecli", "cause": "automation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001","name":"cli_tests_rg000001","location":"westus","tags":{"date":"2019-06-04T16:12:31Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 04 Jun 2019 16:12:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: !!python/unicode '{"location": "eastus2", "properties": {"dhcpOptions": + body: !!python/unicode '{"location": "westcentralus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}}, "tags": {}}' headers: Accept: @@ -62,14 +12,14 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '131' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -78,10 +28,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"1a28b955-3cca-4055-b8d5-57bcec2f4eaa\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"3ae2a8a2-8cf2-4166-85a3-a312942deaad\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9a01361c-7768-4379-9e11-5c75a679cf88\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"8dc9279c-a28f-4b87-91ce-55ddf5619e57\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -89,15 +39,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/689fd847-e267-49ca-8cbb-c4ad718c6caa?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52faf51e-7031-487a-a22c-155381279d44?api-version=2019-04-01 cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:36 GMT + - Fri, 12 Jul 2019 09:37:16 GMT expires: - '-1' pragma: @@ -109,8 +59,10 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - bc3ee654-134a-46ad-84ab-e1d334955e30 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -128,10 +80,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/689fd847-e267-49ca-8cbb-c4ad718c6caa?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52faf51e-7031-487a-a22c-155381279d44?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -143,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:39 GMT + - Fri, 12 Jul 2019 09:37:20 GMT expires: - '-1' pragma: @@ -159,6 +111,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 0385f2ca-7d37-40cf-9153-f9470730ed7b status: code: 200 message: OK @@ -176,18 +130,18 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"98a221db-c6dc-4b56-91f3-c370b63f2a1f\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"5d3a971f-f981-4a76-ac9e-5e94ebeed29b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9a01361c-7768-4379-9e11-5c75a679cf88\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8dc9279c-a28f-4b87-91ce-55ddf5619e57\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -197,13 +151,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:40 GMT + - Fri, 12 Jul 2019 09:37:21 GMT etag: - - W/"98a221db-c6dc-4b56-91f3-c370b63f2a1f" + - W/"5d3a971f-f981-4a76-ac9e-5e94ebeed29b" expires: - '-1' pragma: @@ -219,6 +173,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - e2840191-0c6e-4fa6-bd5b-20a51f1ac8c9 status: code: 200 message: OK @@ -236,8 +192,8 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: GET @@ -246,10 +202,10 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"98a221db-c6dc-4b56-91f3-c370b63f2a1f\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"5d3a971f-f981-4a76-ac9e-5e94ebeed29b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9a01361c-7768-4379-9e11-5c75a679cf88\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8dc9279c-a28f-4b87-91ce-55ddf5619e57\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\ dnsServers\": []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ @@ -259,13 +215,13 @@ interactions: cache-control: - no-cache content-length: - - '807' + - '813' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:41 GMT + - Fri, 12 Jul 2019 09:37:23 GMT etag: - - W/"98a221db-c6dc-4b56-91f3-c370b63f2a1f" + - W/"5d3a971f-f981-4a76-ac9e-5e94ebeed29b" expires: - '-1' pragma: @@ -281,17 +237,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 7facc51e-2568-43be-b433-5f67338bf1be status: code: 200 message: OK - request: body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "etag": "W/\"98a221db-c6dc-4b56-91f3-c370b63f2a1f\"", "location": "eastus2", + "etag": "W/\"5d3a971f-f981-4a76-ac9e-5e94ebeed29b\"", "location": "westcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.12.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "addressSpace": {"addressPrefixes": ["10.12.0.0/16"]}, "enableVmProtection": false, "dhcpOptions": - {"dnsServers": []}, "resourceGuid": "9a01361c-7768-4379-9e11-5c75a679cf88", + {"dnsServers": []}, "resourceGuid": "8dc9279c-a28f-4b87-91ce-55ddf5619e57", "enableDdosProtection": false, "provisioningState": "Succeeded"}, "tags": {}}' headers: Accept: @@ -303,14 +261,14 @@ interactions: Connection: - keep-alive Content-Length: - - '779' + - '785' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT @@ -319,40 +277,42 @@ interactions: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"bb83e3e5-90f1-4606-a35c-54e48e894151\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"06784ab3-bc3b-4ec7-870d-31f1c695ed29\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9a01361c-7768-4379-9e11-5c75a679cf88\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"8dc9279c-a28f-4b87-91ce-55ddf5619e57\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"bb83e3e5-90f1-4606-a35c-54e48e894151\\\"\"\ + ,\r\n \"etag\": \"W/\\\"06784ab3-bc3b-4ec7-870d-31f1c695ed29\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"bb83e3e5-90f1-4606-a35c-54e48e894151\\\ + ,\r\n \"etag\": \"W/\\\"06784ab3-bc3b-4ec7-870d-31f1c695ed29\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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/eastus2/operations/e8c77565-a160-479e-9690-1add01bb1d92?api-version=2019-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d3010779-94a6-48fe-bc84-b7e6d1cffe62?api-version=2019-04-01 cache-control: - no-cache content-length: - - '2278' + - '2399' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:42 GMT + - Fri, 12 Jul 2019 09:37:24 GMT expires: - '-1' pragma: @@ -368,6 +328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 1189e4b6-3da5-45f7-b3de-cda54fa7848c x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -387,10 +349,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/e8c77565-a160-479e-9690-1add01bb1d92?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d3010779-94a6-48fe-bc84-b7e6d1cffe62?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -402,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:46 GMT + - Fri, 12 Jul 2019 09:37:27 GMT expires: - '-1' pragma: @@ -418,6 +380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 9c83eb67-1d59-46ee-b03c-060852aac0c5 status: code: 200 message: OK @@ -435,48 +399,50 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + networkmanagementclient/3.0.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-04-01 response: body: string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"125e29d2-5b4f-4f33-ac98-12121d9d065c\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"etag\": \"W/\\\"6bc3a5fc-d41a-478a-871d-9cf41188b2a8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9a01361c-7768-4379-9e11-5c75a679cf88\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8dc9279c-a28f-4b87-91ce-55ddf5619e57\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.12.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_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"125e29d2-5b4f-4f33-ac98-12121d9d065c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"6bc3a5fc-d41a-478a-871d-9cf41188b2a8\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"125e29d2-5b4f-4f33-ac98-12121d9d065c\\\ + ,\r\n \"etag\": \"W/\\\"6bc3a5fc-d41a-478a-871d-9cf41188b2a8\\\ \"\",\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 },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + ,\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: - - '2280' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:12:47 GMT + - Fri, 12 Jul 2019 09:37:28 GMT etag: - - W/"125e29d2-5b4f-4f33-ac98-12121d9d065c" + - W/"6bc3a5fc-d41a-478a-871d-9cf41188b2a8" expires: - '-1' pragma: @@ -492,11 +458,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - d2e60b37-639f-47e7-811b-6d33f44d5ed5 status: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2"}' + body: !!python/unicode '{"location": "westcentralus"}' headers: Accept: - application/json @@ -507,36 +475,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A13%3A02.0606102Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A37%3A32.4416318Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a9f6d01-c2b2-45d2-8725-ede237f2cb21?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a85f3791-dca7-4779-a176-be11fd1c0cd0?api-version=2019-06-01 cache-control: - no-cache content-length: - - '453' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:13:01 GMT + - Fri, 12 Jul 2019 09:37:32 GMT etag: - - W/"datetime'2019-06-04T16%3A13%3A02.0606102Z'" + - W/"datetime'2019-07-12T09%3A37%3A32.4416318Z'" expires: - '-1' pragma: @@ -570,24 +538,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a9f6d01-c2b2-45d2-8725-ede237f2cb21?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a85f3791-dca7-4779-a176-be11fd1c0cd0?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4a9f6d01-c2b2-45d2-8725-ede237f2cb21","name":"4a9f6d01-c2b2-45d2-8725-ede237f2cb21","status":"Succeeded","startTime":"2019-06-04T16:13:01.9335782Z","endTime":"2019-06-04T16:13:02.105398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a85f3791-dca7-4779-a176-be11fd1c0cd0","name":"a85f3791-dca7-4779-a176-be11fd1c0cd0","status":"Succeeded","startTime":"2019-07-12T09:37:32.3093383Z","endTime":"2019-07-12T09:37:32.5750123Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:13:33 GMT + - Fri, 12 Jul 2019 09:38:03 GMT expires: - '-1' pragma: @@ -623,26 +591,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-06-04T16%3A13%3A02.255796Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-12T09%3A37%3A32.5697218Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '452' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:13:42 GMT + - Fri, 12 Jul 2019 09:38:04 GMT etag: - - W/"datetime'2019-06-04T16%3A13%3A02.255796Z'" + - W/"datetime'2019-07-12T09%3A37%3A32.5697218Z'" expires: - '-1' pragma: @@ -665,7 +633,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "eastus2", "properties": {"serviceLevel": + body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": "Premium", "size": 4398046511104}}' headers: Accept: @@ -677,36 +645,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A13%3A48.6830514Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A09.0832208Z''\"","location":"westcentralus","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/eastus2/operationResults/fb71614d-3132-4e5f-a901-93743827f46e?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/71e31405-4f06-4c33-9f0f-662ad45ae274?api-version=2019-06-01 cache-control: - no-cache content-length: - - '542' + - '548' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:13:48 GMT + - Fri, 12 Jul 2019 09:38:09 GMT etag: - - W/"datetime'2019-06-04T16%3A13%3A48.6830514Z'" + - W/"datetime'2019-07-12T09%3A38%3A09.0832208Z'" expires: - '-1' pragma: @@ -720,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -740,24 +708,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fb71614d-3132-4e5f-a901-93743827f46e?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/71e31405-4f06-4c33-9f0f-662ad45ae274?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/fb71614d-3132-4e5f-a901-93743827f46e","name":"fb71614d-3132-4e5f-a901-93743827f46e","status":"Succeeded","startTime":"2019-06-04T16:13:48.5531576Z","endTime":"2019-06-04T16:13:49.0375499Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/71e31405-4f06-4c33-9f0f-662ad45ae274","name":"71e31405-4f06-4c33-9f0f-662ad45ae274","status":"Succeeded","startTime":"2019-07-12T09:38:08.9389Z","endTime":"2019-07-12T09:38:09.5326075Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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: - - Tue, 04 Jun 2019 16:14:29 GMT + - Fri, 12 Jul 2019 09:38:41 GMT expires: - '-1' pragma: @@ -793,26 +761,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A13%3A49.178523Z''\"","location":"eastus2","properties":{"poolId":"755a35cc-542a-1335-942b-c6c61fc81a55","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A09.5295326Z''\"","location":"westcentralus","properties":{"poolId":"929c873d-2896-fb11-7732-a08d603b6079","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: - - '649' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:14:31 GMT + - Fri, 12 Jul 2019 09:38:43 GMT etag: - - W/"datetime'2019-06-04T16%3A13%3A49.178523Z'" + - W/"datetime'2019-07-12T09%3A38%3A09.5295326Z'" expires: - '-1' pragma: @@ -837,7 +805,7 @@ interactions: - request: body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "eastus2"}' + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -848,37 +816,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '401' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A14%3A35.8990577Z''\"","location":"eastus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A38%3A50.8433833Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 cache-control: - no-cache content-length: - - '910' + - '916' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:14:35 GMT + - Fri, 12 Jul 2019 09:38:51 GMT etag: - - W/"datetime'2019-06-04T16%3A14%3A35.8990577Z'" + - W/"datetime'2019-07-12T09%3A38%3A50.8433833Z'" expires: - '-1' pragma: @@ -913,24 +881,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Creating","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:15:06 GMT + - Fri, 12 Jul 2019 09:39:24 GMT expires: - '-1' pragma: @@ -967,24 +935,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Creating","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:15:37 GMT + - Fri, 12 Jul 2019 09:39:55 GMT expires: - '-1' pragma: @@ -1021,24 +989,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Creating","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:16:09 GMT + - Fri, 12 Jul 2019 09:40:26 GMT expires: - '-1' pragma: @@ -1075,24 +1043,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Creating","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:16:39 GMT + - Fri, 12 Jul 2019 09:40:58 GMT expires: - '-1' pragma: @@ -1129,24 +1097,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Creating","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:11 GMT + - Fri, 12 Jul 2019 09:41:29 GMT expires: - '-1' pragma: @@ -1183,24 +1151,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/3f3752cf-efb6-47da-833d-20891965c57c","name":"3f3752cf-efb6-47da-833d-20891965c57c","status":"Succeeded","startTime":"2019-06-04T16:14:35.7590242Z","endTime":"2019-06-04T16:17:22.9989413Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Creating","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/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' + - '643' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:42 GMT + - Fri, 12 Jul 2019 09:42:00 GMT expires: - '-1' pragma: @@ -1237,26 +1205,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A17%3A23.0466345Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_9378a136","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5af34e8a-48e8-6c01-2f4f-b081e752f15c","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f63a5782-ccc8-46b8-a10b-86337bc29ae2","name":"f63a5782-ccc8-46b8-a10b-86337bc29ae2","status":"Succeeded","startTime":"2019-07-12T09:38:50.6887156Z","endTime":"2019-07-12T09:42:18.5072649Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1635' + - '654' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:43 GMT - etag: - - W/"datetime'2019-06-04T16%3A17%3A23.0466345Z'" + - Fri, 12 Jul 2019 09:42:31 GMT expires: - '-1' pragma: @@ -1286,34 +1252,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume update + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group -a -p -v --tags --service-level + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --creation-token --vnet --subnet User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A17%3A23.0466345Z''\"","location":"eastus2","properties":{"provisioningState":"Succeeded","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_9378a136","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5af34e8a-48e8-6c01-2f4f-b081e752f15c","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A42%3A18.4833924Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_faec33f0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2e17afb6-9a5e-2a43-726d-8671e928ce1a","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1635' + - '1592' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:45 GMT + - Fri, 12 Jul 2019 09:42:33 GMT etag: - - W/"datetime'2019-06-04T16%3A17%3A23.0466345Z'" + - W/"datetime'2019-07-12T09%3A42%3A18.4833924Z'" expires: - '-1' pragma: @@ -1336,8 +1301,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "serviceLevel": - "Standard"}, "tags": {"Tag1": "Value2"}}' + body: null headers: Accept: - application/json @@ -1347,35 +1311,31 @@ interactions: - netappfiles volume update Connection: - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group -a -p -v --tags --service-level User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - azure-mgmt-netapp/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-05-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-06-04T16%3A17%3A52.880587Z''\"","location":"eastus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","ownerId":"79770fad-5164-11e9-9e4a-3a8c013b5748","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_79770fad516411e99e4a3a8c013b5748_9378a136","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"5af34e8a-48e8-6c01-2f4f-b081e752f15c","fileSystemId":"f1dad13c-48c2-cfdf-0b9e-1721e4c7cc61","startIp":"10.12.0.5","endIp":"10.12.0.5","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.5"}]}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A42%3A18.4833924Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_faec33f0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2e17afb6-9a5e-2a43-726d-8671e928ce1a","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1660' + - '1592' content-type: - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:53 GMT + - Fri, 12 Jul 2019 09:42:34 GMT etag: - - W/"datetime'2019-06-04T16%3A17%3A52.880587Z'" + - W/"datetime'2019-07-12T09%3A42%3A18.4833924Z'" expires: - '-1' pragma: @@ -1392,58 +1352,73 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "serviceLevel": + "Standard"}, "tags": {"Tag1": "Value2"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - group delete + - netappfiles volume update Connection: - keep-alive Content-Length: - - '0' + - '104' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --name --yes --no-wait + - --resource-group -a -p -v --tags --service-level User-Agent: - - python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.4.34 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.65 + - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.6.1 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.68 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_tests_rg000001?api-version=2018-05-01 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-06-01 response: body: - string: !!python/unicode '' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/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''2019-07-12T09%3A42%3A39.4520358Z''\"","location":"westcentralus","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_faec33f0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2e17afb6-9a5e-2a43-726d-8671e928ce1a","fileSystemId":"b49302b1-c06c-110b-bdb3-8690a0d9d454","startIp":"10.12.0.6","endIp":"10.12.0.6","gateway":"10.12.0.1","netmask":"255.255.255.0","ipAddress":"10.12.0.6"}]}}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: - - '0' + - '1618' + content-type: + - application/json; charset=utf-8 date: - - Tue, 04 Jun 2019 16:17:56 GMT + - Fri, 12 Jul 2019 09:42:48 GMT + etag: + - W/"datetime'2019-07-12T09%3A42%3A39.4520358Z'" expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUUzo1RlJHS0lXQ0hHS0daVlpZM0tXQUhDQ0EzMzRMWE9PTVNZUHwwRTM3MzIzQzAyMUM0NThBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 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 932792f01d8..3d51346415f 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 = "eastus2" +LOCATION = "westcentralus" # 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_mount_target_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_mount_target_commands.py index aa849badd00..f096fe941c0 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_mount_target_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_mount_target_commands.py @@ -7,7 +7,7 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "eastus2" +LOCATION = "westcentralus" # 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_pool_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_pool_commands.py index 29c2175191b..5b2b38363d8 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_pool_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_pool_commands.py @@ -9,7 +9,7 @@ POOL_DEFAULT = "--service-level Premium --size 4" POOL_DEFAULT_TOO_SMALL = "--service-level 'Premium' --size 3" POOL_DEFAULT_STRING_SIZE = "--service-level 'Premium' --size a" -LOCATION = "eastus2" +LOCATION = "westcentralus" # 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 381bdfeaab2..7dfd53fe22f 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 @@ -7,7 +7,7 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "eastus2" +LOCATION = "westcentralus" # 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_volume_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_volume_commands.py index d2af69b11cb..802b6881aa9 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 @@ -7,7 +7,7 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "eastus2" +LOCATION = "westcentralus" # No tidy up of tests required. The resource group is automatically removed @@ -21,16 +21,17 @@ 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, volume_name2=None): + def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None, volume_name2=None, protocols=None): vnet_name = self.create_random_name(prefix='cli-vnet-', length=24) creation_token = volume_name1 subnet_name = self.create_random_name(prefix='cli-subnet-', length=16) tag = "--tags %s" % tags if tags is not None else "" + protocol_types = "--protocol-types %s" % protocols if protocols is not None else "" self.setup_vnet(rg, vnet_name, subnet_name, '10.12.0.0') self.cmd("az netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, LOCATION)).get_output_in_json() self.cmd("az netappfiles pool create -g %s -a %s -p %s -l %s %s %s" % (rg, account_name, pool_name, LOCATION, POOL_DEFAULT, tag)).get_output_in_json() - volume1 = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --creation-token %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, LOCATION, VOLUME_DEFAULT, creation_token, vnet_name, subnet_name, tag)).get_output_in_json() + volume1 = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --creation-token %s --vnet %s --subnet %s %s %s" % (rg, account_name, pool_name, volume_name1, LOCATION, VOLUME_DEFAULT, creation_token, vnet_name, subnet_name, protocol_types, tag)).get_output_in_json() if volume_name2: creation_token = volume_name2 @@ -45,7 +46,9 @@ def test_create_delete_volumes(self): volume_name = self.create_random_name(prefix='cli-vol-', length=24) tags = "Tag1=Value1 Tag2=Value2" - volume = self.create_volume(account_name, pool_name, volume_name, '{rg}', tags) + protocol_types = "NFSv3 NFSv4" + + volume = self.create_volume(account_name, pool_name, volume_name, '{rg}', tags=tags, protocols=protocol_types) assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name assert volume['tags']['Tag1'] == 'Value1' assert volume['tags']['Tag2'] == 'Value2' @@ -53,6 +56,12 @@ def test_create_delete_volumes(self): assert volume['exportPolicy']['rules'][0]['allowedClients'] == '0.0.0.0/0' assert not volume['exportPolicy']['rules'][0]['cifs'] assert volume['exportPolicy']['rules'][0]['ruleIndex'] == 1 + # check a mount target is present + assert len(volume['mountTargets']) == 1 + # specified protocol type + assert len(volume['protocolTypes']) == 2 + assert volume['protocolTypes'][0] == 'NFSv3' + assert volume['protocolTypes'][1] == 'NFSv4' volume_list = self.cmd("netappfiles volume list --resource-group {rg} --account-name %s --pool-name %s" % (account_name, pool_name)).get_output_in_json() assert len(volume_list) == 1 @@ -68,7 +77,8 @@ def test_list_volumes(self): volume_name1 = self.create_random_name(prefix='cli-vol-', length=24) volume_name2 = self.create_random_name(prefix='cli-vol-', length=24) tags = "Tag1=Value1" - self.create_volume(account_name, pool_name, volume_name1, '{rg}', tags, volume_name2) + + self.create_volume(account_name, pool_name, volume_name1, '{rg}', tags=tags, volume_name2=volume_name2) volume_list = self.cmd("netappfiles volume list --resource-group {rg} -a '%s' -p '%s'" % (account_name, pool_name)).get_output_in_json() assert len(volume_list) == 2 @@ -84,8 +94,12 @@ def test_get_volume_by_name(self): volume_name = self.create_random_name(prefix='cli-vol-', length=24) tags = "Tag2=Value1" - volume = self.create_volume(account_name, pool_name, volume_name, '{rg}', tags) + protocol_types = "NFSv4" + volume = self.create_volume(account_name, pool_name, volume_name, '{rg}', tags=tags, protocols=protocol_types) assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name + # specified protocol type + assert len(volume['protocolTypes']) == 1 + assert volume['protocolTypes'][0] == 'NFSv4' volume = self.cmd("az netappfiles volume show --resource-group {rg} -a %s -p %s -v %s" % (account_name, pool_name, volume_name)).get_output_in_json() assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name @@ -103,6 +117,9 @@ def test_update_volume(self): volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name + # default protocol type + assert len(volume['protocolTypes']) == 1 + assert volume['protocolTypes'][0] == 'NFSv3' volume = self.cmd("az netappfiles volume update --resource-group {rg} -a %s -p %s -v %s --tags %s --service-level 'Standard'" % (account_name, pool_name, volume_name, tags)).get_output_in_json() assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 28027a0ef3c..5b57a6b7f32 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -102,7 +102,7 @@ 'azure-mgmt-monitor~=0.5.2', 'azure-mgmt-msi~=0.2', 'azure-mgmt-network~=3.0', - 'azure-mgmt-netapp~=0.4.0', + 'azure-mgmt-netapp~=0.5.0', 'azure-mgmt-policyinsights~=0.3.1', 'azure-mgmt-privatedns~=0.1.0', 'azure-mgmt-rdbms~=1.8',